1 /*
2  * This file is part of gtkD.
3  *
4  * gtkD is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 3
7  * of the License, or (at your option) any later version, with
8  * some exceptions, please read the COPYING file.
9  *
10  * gtkD is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with gtkD; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
18  */
19 
20 // generated automatically - do not change
21 // find conversion definition on APILookup.txt
22 // implement new conversion functionalities on the wrap.utils pakage
23 
24 
25 module gio.c.functions;
26 
27 import std.stdio;
28 import gio.c.types;
29 import linker.Loader;
30 
31 version (Windows)
32 	static immutable LIBRARY_GIO = ["libgio-2.0-0.dll;gio-2.0-0.dll;gio-2.dll"];
33 else version (OSX)
34 	static immutable LIBRARY_GIO = ["libgio-2.0.0.dylib"];
35 else
36 	static immutable LIBRARY_GIO = ["libgio-2.0.so.0"];
37 
38 shared static this()
39 {
40 	// gio.Action
41 
42 	Linker.link(g_action_get_type, "g_action_get_type", LIBRARY_GIO);
43 	Linker.link(g_action_name_is_valid, "g_action_name_is_valid", LIBRARY_GIO);
44 	Linker.link(g_action_parse_detailed_name, "g_action_parse_detailed_name", LIBRARY_GIO);
45 	Linker.link(g_action_print_detailed_name, "g_action_print_detailed_name", LIBRARY_GIO);
46 	Linker.link(g_action_activate, "g_action_activate", LIBRARY_GIO);
47 	Linker.link(g_action_change_state, "g_action_change_state", LIBRARY_GIO);
48 	Linker.link(g_action_get_enabled, "g_action_get_enabled", LIBRARY_GIO);
49 	Linker.link(g_action_get_name, "g_action_get_name", LIBRARY_GIO);
50 	Linker.link(g_action_get_parameter_type, "g_action_get_parameter_type", LIBRARY_GIO);
51 	Linker.link(g_action_get_state, "g_action_get_state", LIBRARY_GIO);
52 	Linker.link(g_action_get_state_hint, "g_action_get_state_hint", LIBRARY_GIO);
53 	Linker.link(g_action_get_state_type, "g_action_get_state_type", LIBRARY_GIO);
54 
55 	// gio.ActionGroup
56 
57 	Linker.link(g_action_group_get_type, "g_action_group_get_type", LIBRARY_GIO);
58 	Linker.link(g_action_group_action_added, "g_action_group_action_added", LIBRARY_GIO);
59 	Linker.link(g_action_group_action_enabled_changed, "g_action_group_action_enabled_changed", LIBRARY_GIO);
60 	Linker.link(g_action_group_action_removed, "g_action_group_action_removed", LIBRARY_GIO);
61 	Linker.link(g_action_group_action_state_changed, "g_action_group_action_state_changed", LIBRARY_GIO);
62 	Linker.link(g_action_group_activate_action, "g_action_group_activate_action", LIBRARY_GIO);
63 	Linker.link(g_action_group_change_action_state, "g_action_group_change_action_state", LIBRARY_GIO);
64 	Linker.link(g_action_group_get_action_enabled, "g_action_group_get_action_enabled", LIBRARY_GIO);
65 	Linker.link(g_action_group_get_action_parameter_type, "g_action_group_get_action_parameter_type", LIBRARY_GIO);
66 	Linker.link(g_action_group_get_action_state, "g_action_group_get_action_state", LIBRARY_GIO);
67 	Linker.link(g_action_group_get_action_state_hint, "g_action_group_get_action_state_hint", LIBRARY_GIO);
68 	Linker.link(g_action_group_get_action_state_type, "g_action_group_get_action_state_type", LIBRARY_GIO);
69 	Linker.link(g_action_group_has_action, "g_action_group_has_action", LIBRARY_GIO);
70 	Linker.link(g_action_group_list_actions, "g_action_group_list_actions", LIBRARY_GIO);
71 	Linker.link(g_action_group_query_action, "g_action_group_query_action", LIBRARY_GIO);
72 
73 	// gio.ActionMap
74 
75 	Linker.link(g_action_map_get_type, "g_action_map_get_type", LIBRARY_GIO);
76 	Linker.link(g_action_map_add_action, "g_action_map_add_action", LIBRARY_GIO);
77 	Linker.link(g_action_map_add_action_entries, "g_action_map_add_action_entries", LIBRARY_GIO);
78 	Linker.link(g_action_map_lookup_action, "g_action_map_lookup_action", LIBRARY_GIO);
79 	Linker.link(g_action_map_remove_action, "g_action_map_remove_action", LIBRARY_GIO);
80 
81 	// gio.AppInfo
82 
83 	Linker.link(g_app_info_get_type, "g_app_info_get_type", LIBRARY_GIO);
84 	Linker.link(g_app_info_create_from_commandline, "g_app_info_create_from_commandline", LIBRARY_GIO);
85 	Linker.link(g_app_info_get_all, "g_app_info_get_all", LIBRARY_GIO);
86 	Linker.link(g_app_info_get_all_for_type, "g_app_info_get_all_for_type", LIBRARY_GIO);
87 	Linker.link(g_app_info_get_default_for_type, "g_app_info_get_default_for_type", LIBRARY_GIO);
88 	Linker.link(g_app_info_get_default_for_uri_scheme, "g_app_info_get_default_for_uri_scheme", LIBRARY_GIO);
89 	Linker.link(g_app_info_get_fallback_for_type, "g_app_info_get_fallback_for_type", LIBRARY_GIO);
90 	Linker.link(g_app_info_get_recommended_for_type, "g_app_info_get_recommended_for_type", LIBRARY_GIO);
91 	Linker.link(g_app_info_launch_default_for_uri, "g_app_info_launch_default_for_uri", LIBRARY_GIO);
92 	Linker.link(g_app_info_launch_default_for_uri_async, "g_app_info_launch_default_for_uri_async", LIBRARY_GIO);
93 	Linker.link(g_app_info_launch_default_for_uri_finish, "g_app_info_launch_default_for_uri_finish", LIBRARY_GIO);
94 	Linker.link(g_app_info_reset_type_associations, "g_app_info_reset_type_associations", LIBRARY_GIO);
95 	Linker.link(g_app_info_add_supports_type, "g_app_info_add_supports_type", LIBRARY_GIO);
96 	Linker.link(g_app_info_can_delete, "g_app_info_can_delete", LIBRARY_GIO);
97 	Linker.link(g_app_info_can_remove_supports_type, "g_app_info_can_remove_supports_type", LIBRARY_GIO);
98 	Linker.link(g_app_info_delete, "g_app_info_delete", LIBRARY_GIO);
99 	Linker.link(g_app_info_dup, "g_app_info_dup", LIBRARY_GIO);
100 	Linker.link(g_app_info_equal, "g_app_info_equal", LIBRARY_GIO);
101 	Linker.link(g_app_info_get_commandline, "g_app_info_get_commandline", LIBRARY_GIO);
102 	Linker.link(g_app_info_get_description, "g_app_info_get_description", LIBRARY_GIO);
103 	Linker.link(g_app_info_get_display_name, "g_app_info_get_display_name", LIBRARY_GIO);
104 	Linker.link(g_app_info_get_executable, "g_app_info_get_executable", LIBRARY_GIO);
105 	Linker.link(g_app_info_get_icon, "g_app_info_get_icon", LIBRARY_GIO);
106 	Linker.link(g_app_info_get_id, "g_app_info_get_id", LIBRARY_GIO);
107 	Linker.link(g_app_info_get_name, "g_app_info_get_name", LIBRARY_GIO);
108 	Linker.link(g_app_info_get_supported_types, "g_app_info_get_supported_types", LIBRARY_GIO);
109 	Linker.link(g_app_info_launch, "g_app_info_launch", LIBRARY_GIO);
110 	Linker.link(g_app_info_launch_uris, "g_app_info_launch_uris", LIBRARY_GIO);
111 	Linker.link(g_app_info_launch_uris_async, "g_app_info_launch_uris_async", LIBRARY_GIO);
112 	Linker.link(g_app_info_launch_uris_finish, "g_app_info_launch_uris_finish", LIBRARY_GIO);
113 	Linker.link(g_app_info_remove_supports_type, "g_app_info_remove_supports_type", LIBRARY_GIO);
114 	Linker.link(g_app_info_set_as_default_for_extension, "g_app_info_set_as_default_for_extension", LIBRARY_GIO);
115 	Linker.link(g_app_info_set_as_default_for_type, "g_app_info_set_as_default_for_type", LIBRARY_GIO);
116 	Linker.link(g_app_info_set_as_last_used_for_type, "g_app_info_set_as_last_used_for_type", LIBRARY_GIO);
117 	Linker.link(g_app_info_should_show, "g_app_info_should_show", LIBRARY_GIO);
118 	Linker.link(g_app_info_supports_files, "g_app_info_supports_files", LIBRARY_GIO);
119 	Linker.link(g_app_info_supports_uris, "g_app_info_supports_uris", LIBRARY_GIO);
120 
121 	// gio.AppInfoMonitor
122 
123 	Linker.link(g_app_info_monitor_get_type, "g_app_info_monitor_get_type", LIBRARY_GIO);
124 	Linker.link(g_app_info_monitor_get, "g_app_info_monitor_get", LIBRARY_GIO);
125 
126 	// gio.AppLaunchContext
127 
128 	Linker.link(g_app_launch_context_get_type, "g_app_launch_context_get_type", LIBRARY_GIO);
129 	Linker.link(g_app_launch_context_new, "g_app_launch_context_new", LIBRARY_GIO);
130 	Linker.link(g_app_launch_context_get_display, "g_app_launch_context_get_display", LIBRARY_GIO);
131 	Linker.link(g_app_launch_context_get_environment, "g_app_launch_context_get_environment", LIBRARY_GIO);
132 	Linker.link(g_app_launch_context_get_startup_notify_id, "g_app_launch_context_get_startup_notify_id", LIBRARY_GIO);
133 	Linker.link(g_app_launch_context_launch_failed, "g_app_launch_context_launch_failed", LIBRARY_GIO);
134 	Linker.link(g_app_launch_context_setenv, "g_app_launch_context_setenv", LIBRARY_GIO);
135 	Linker.link(g_app_launch_context_unsetenv, "g_app_launch_context_unsetenv", LIBRARY_GIO);
136 
137 	// gio.Application
138 
139 	Linker.link(g_application_get_type, "g_application_get_type", LIBRARY_GIO);
140 	Linker.link(g_application_new, "g_application_new", LIBRARY_GIO);
141 	Linker.link(g_application_get_default, "g_application_get_default", LIBRARY_GIO);
142 	Linker.link(g_application_id_is_valid, "g_application_id_is_valid", LIBRARY_GIO);
143 	Linker.link(g_application_activate, "g_application_activate", LIBRARY_GIO);
144 	Linker.link(g_application_add_main_option, "g_application_add_main_option", LIBRARY_GIO);
145 	Linker.link(g_application_add_main_option_entries, "g_application_add_main_option_entries", LIBRARY_GIO);
146 	Linker.link(g_application_add_option_group, "g_application_add_option_group", LIBRARY_GIO);
147 	Linker.link(g_application_bind_busy_property, "g_application_bind_busy_property", LIBRARY_GIO);
148 	Linker.link(g_application_get_application_id, "g_application_get_application_id", LIBRARY_GIO);
149 	Linker.link(g_application_get_dbus_connection, "g_application_get_dbus_connection", LIBRARY_GIO);
150 	Linker.link(g_application_get_dbus_object_path, "g_application_get_dbus_object_path", LIBRARY_GIO);
151 	Linker.link(g_application_get_flags, "g_application_get_flags", LIBRARY_GIO);
152 	Linker.link(g_application_get_inactivity_timeout, "g_application_get_inactivity_timeout", LIBRARY_GIO);
153 	Linker.link(g_application_get_is_busy, "g_application_get_is_busy", LIBRARY_GIO);
154 	Linker.link(g_application_get_is_registered, "g_application_get_is_registered", LIBRARY_GIO);
155 	Linker.link(g_application_get_is_remote, "g_application_get_is_remote", LIBRARY_GIO);
156 	Linker.link(g_application_get_resource_base_path, "g_application_get_resource_base_path", LIBRARY_GIO);
157 	Linker.link(g_application_hold, "g_application_hold", LIBRARY_GIO);
158 	Linker.link(g_application_mark_busy, "g_application_mark_busy", LIBRARY_GIO);
159 	Linker.link(g_application_open, "g_application_open", LIBRARY_GIO);
160 	Linker.link(g_application_quit, "g_application_quit", LIBRARY_GIO);
161 	Linker.link(g_application_register, "g_application_register", LIBRARY_GIO);
162 	Linker.link(g_application_release, "g_application_release", LIBRARY_GIO);
163 	Linker.link(g_application_run, "g_application_run", LIBRARY_GIO);
164 	Linker.link(g_application_send_notification, "g_application_send_notification", LIBRARY_GIO);
165 	Linker.link(g_application_set_action_group, "g_application_set_action_group", LIBRARY_GIO);
166 	Linker.link(g_application_set_application_id, "g_application_set_application_id", LIBRARY_GIO);
167 	Linker.link(g_application_set_default, "g_application_set_default", LIBRARY_GIO);
168 	Linker.link(g_application_set_flags, "g_application_set_flags", LIBRARY_GIO);
169 	Linker.link(g_application_set_inactivity_timeout, "g_application_set_inactivity_timeout", LIBRARY_GIO);
170 	Linker.link(g_application_set_option_context_description, "g_application_set_option_context_description", LIBRARY_GIO);
171 	Linker.link(g_application_set_option_context_parameter_string, "g_application_set_option_context_parameter_string", LIBRARY_GIO);
172 	Linker.link(g_application_set_option_context_summary, "g_application_set_option_context_summary", LIBRARY_GIO);
173 	Linker.link(g_application_set_resource_base_path, "g_application_set_resource_base_path", LIBRARY_GIO);
174 	Linker.link(g_application_unbind_busy_property, "g_application_unbind_busy_property", LIBRARY_GIO);
175 	Linker.link(g_application_unmark_busy, "g_application_unmark_busy", LIBRARY_GIO);
176 	Linker.link(g_application_withdraw_notification, "g_application_withdraw_notification", LIBRARY_GIO);
177 
178 	// gio.ApplicationCommandLine
179 
180 	Linker.link(g_application_command_line_get_type, "g_application_command_line_get_type", LIBRARY_GIO);
181 	Linker.link(g_application_command_line_create_file_for_arg, "g_application_command_line_create_file_for_arg", LIBRARY_GIO);
182 	Linker.link(g_application_command_line_get_arguments, "g_application_command_line_get_arguments", LIBRARY_GIO);
183 	Linker.link(g_application_command_line_get_cwd, "g_application_command_line_get_cwd", LIBRARY_GIO);
184 	Linker.link(g_application_command_line_get_environ, "g_application_command_line_get_environ", LIBRARY_GIO);
185 	Linker.link(g_application_command_line_get_exit_status, "g_application_command_line_get_exit_status", LIBRARY_GIO);
186 	Linker.link(g_application_command_line_get_is_remote, "g_application_command_line_get_is_remote", LIBRARY_GIO);
187 	Linker.link(g_application_command_line_get_options_dict, "g_application_command_line_get_options_dict", LIBRARY_GIO);
188 	Linker.link(g_application_command_line_get_platform_data, "g_application_command_line_get_platform_data", LIBRARY_GIO);
189 	Linker.link(g_application_command_line_get_stdin, "g_application_command_line_get_stdin", LIBRARY_GIO);
190 	Linker.link(g_application_command_line_getenv, "g_application_command_line_getenv", LIBRARY_GIO);
191 	Linker.link(g_application_command_line_print, "g_application_command_line_print", LIBRARY_GIO);
192 	Linker.link(g_application_command_line_printerr, "g_application_command_line_printerr", LIBRARY_GIO);
193 	Linker.link(g_application_command_line_set_exit_status, "g_application_command_line_set_exit_status", LIBRARY_GIO);
194 
195 	// gio.AsyncInitable
196 
197 	Linker.link(g_async_initable_get_type, "g_async_initable_get_type", LIBRARY_GIO);
198 	Linker.link(g_async_initable_new_async, "g_async_initable_new_async", LIBRARY_GIO);
199 	Linker.link(g_async_initable_new_valist_async, "g_async_initable_new_valist_async", LIBRARY_GIO);
200 	Linker.link(g_async_initable_newv_async, "g_async_initable_newv_async", LIBRARY_GIO);
201 	Linker.link(g_async_initable_init_async, "g_async_initable_init_async", LIBRARY_GIO);
202 	Linker.link(g_async_initable_init_finish, "g_async_initable_init_finish", LIBRARY_GIO);
203 	Linker.link(g_async_initable_new_finish, "g_async_initable_new_finish", LIBRARY_GIO);
204 
205 	// gio.AsyncResult
206 
207 	Linker.link(g_async_result_get_type, "g_async_result_get_type", LIBRARY_GIO);
208 	Linker.link(g_async_result_get_source_object, "g_async_result_get_source_object", LIBRARY_GIO);
209 	Linker.link(g_async_result_get_user_data, "g_async_result_get_user_data", LIBRARY_GIO);
210 	Linker.link(g_async_result_is_tagged, "g_async_result_is_tagged", LIBRARY_GIO);
211 	Linker.link(g_async_result_legacy_propagate_error, "g_async_result_legacy_propagate_error", LIBRARY_GIO);
212 
213 	// gio.BufferedInputStream
214 
215 	Linker.link(g_buffered_input_stream_get_type, "g_buffered_input_stream_get_type", LIBRARY_GIO);
216 	Linker.link(g_buffered_input_stream_new, "g_buffered_input_stream_new", LIBRARY_GIO);
217 	Linker.link(g_buffered_input_stream_new_sized, "g_buffered_input_stream_new_sized", LIBRARY_GIO);
218 	Linker.link(g_buffered_input_stream_fill, "g_buffered_input_stream_fill", LIBRARY_GIO);
219 	Linker.link(g_buffered_input_stream_fill_async, "g_buffered_input_stream_fill_async", LIBRARY_GIO);
220 	Linker.link(g_buffered_input_stream_fill_finish, "g_buffered_input_stream_fill_finish", LIBRARY_GIO);
221 	Linker.link(g_buffered_input_stream_get_available, "g_buffered_input_stream_get_available", LIBRARY_GIO);
222 	Linker.link(g_buffered_input_stream_get_buffer_size, "g_buffered_input_stream_get_buffer_size", LIBRARY_GIO);
223 	Linker.link(g_buffered_input_stream_peek, "g_buffered_input_stream_peek", LIBRARY_GIO);
224 	Linker.link(g_buffered_input_stream_peek_buffer, "g_buffered_input_stream_peek_buffer", LIBRARY_GIO);
225 	Linker.link(g_buffered_input_stream_read_byte, "g_buffered_input_stream_read_byte", LIBRARY_GIO);
226 	Linker.link(g_buffered_input_stream_set_buffer_size, "g_buffered_input_stream_set_buffer_size", LIBRARY_GIO);
227 
228 	// gio.BufferedOutputStream
229 
230 	Linker.link(g_buffered_output_stream_get_type, "g_buffered_output_stream_get_type", LIBRARY_GIO);
231 	Linker.link(g_buffered_output_stream_new, "g_buffered_output_stream_new", LIBRARY_GIO);
232 	Linker.link(g_buffered_output_stream_new_sized, "g_buffered_output_stream_new_sized", LIBRARY_GIO);
233 	Linker.link(g_buffered_output_stream_get_auto_grow, "g_buffered_output_stream_get_auto_grow", LIBRARY_GIO);
234 	Linker.link(g_buffered_output_stream_get_buffer_size, "g_buffered_output_stream_get_buffer_size", LIBRARY_GIO);
235 	Linker.link(g_buffered_output_stream_set_auto_grow, "g_buffered_output_stream_set_auto_grow", LIBRARY_GIO);
236 	Linker.link(g_buffered_output_stream_set_buffer_size, "g_buffered_output_stream_set_buffer_size", LIBRARY_GIO);
237 
238 	// gio.BytesIcon
239 
240 	Linker.link(g_bytes_icon_get_type, "g_bytes_icon_get_type", LIBRARY_GIO);
241 	Linker.link(g_bytes_icon_new, "g_bytes_icon_new", LIBRARY_GIO);
242 	Linker.link(g_bytes_icon_get_bytes, "g_bytes_icon_get_bytes", LIBRARY_GIO);
243 
244 	// gio.Cancellable
245 
246 	Linker.link(g_cancellable_get_type, "g_cancellable_get_type", LIBRARY_GIO);
247 	Linker.link(g_cancellable_new, "g_cancellable_new", LIBRARY_GIO);
248 	Linker.link(g_cancellable_get_current, "g_cancellable_get_current", LIBRARY_GIO);
249 	Linker.link(g_cancellable_cancel, "g_cancellable_cancel", LIBRARY_GIO);
250 	Linker.link(g_cancellable_connect, "g_cancellable_connect", LIBRARY_GIO);
251 	Linker.link(g_cancellable_disconnect, "g_cancellable_disconnect", LIBRARY_GIO);
252 	Linker.link(g_cancellable_get_fd, "g_cancellable_get_fd", LIBRARY_GIO);
253 	Linker.link(g_cancellable_is_cancelled, "g_cancellable_is_cancelled", LIBRARY_GIO);
254 	Linker.link(g_cancellable_make_pollfd, "g_cancellable_make_pollfd", LIBRARY_GIO);
255 	Linker.link(g_cancellable_pop_current, "g_cancellable_pop_current", LIBRARY_GIO);
256 	Linker.link(g_cancellable_push_current, "g_cancellable_push_current", LIBRARY_GIO);
257 	Linker.link(g_cancellable_release_fd, "g_cancellable_release_fd", LIBRARY_GIO);
258 	Linker.link(g_cancellable_reset, "g_cancellable_reset", LIBRARY_GIO);
259 	Linker.link(g_cancellable_set_error_if_cancelled, "g_cancellable_set_error_if_cancelled", LIBRARY_GIO);
260 	Linker.link(g_cancellable_source_new, "g_cancellable_source_new", LIBRARY_GIO);
261 
262 	// gio.CharsetConverter
263 
264 	Linker.link(g_charset_converter_get_type, "g_charset_converter_get_type", LIBRARY_GIO);
265 	Linker.link(g_charset_converter_new, "g_charset_converter_new", LIBRARY_GIO);
266 	Linker.link(g_charset_converter_get_num_fallbacks, "g_charset_converter_get_num_fallbacks", LIBRARY_GIO);
267 	Linker.link(g_charset_converter_get_use_fallback, "g_charset_converter_get_use_fallback", LIBRARY_GIO);
268 	Linker.link(g_charset_converter_set_use_fallback, "g_charset_converter_set_use_fallback", LIBRARY_GIO);
269 
270 	// gio.Converter
271 
272 	Linker.link(g_converter_get_type, "g_converter_get_type", LIBRARY_GIO);
273 	Linker.link(g_converter_convert, "g_converter_convert", LIBRARY_GIO);
274 	Linker.link(g_converter_reset, "g_converter_reset", LIBRARY_GIO);
275 
276 	// gio.ConverterInputStream
277 
278 	Linker.link(g_converter_input_stream_get_type, "g_converter_input_stream_get_type", LIBRARY_GIO);
279 	Linker.link(g_converter_input_stream_new, "g_converter_input_stream_new", LIBRARY_GIO);
280 	Linker.link(g_converter_input_stream_get_converter, "g_converter_input_stream_get_converter", LIBRARY_GIO);
281 
282 	// gio.ConverterOutputStream
283 
284 	Linker.link(g_converter_output_stream_get_type, "g_converter_output_stream_get_type", LIBRARY_GIO);
285 	Linker.link(g_converter_output_stream_new, "g_converter_output_stream_new", LIBRARY_GIO);
286 	Linker.link(g_converter_output_stream_get_converter, "g_converter_output_stream_get_converter", LIBRARY_GIO);
287 
288 	// gio.Credentials
289 
290 	Linker.link(g_credentials_get_type, "g_credentials_get_type", LIBRARY_GIO);
291 	Linker.link(g_credentials_new, "g_credentials_new", LIBRARY_GIO);
292 	Linker.link(g_credentials_get_native, "g_credentials_get_native", LIBRARY_GIO);
293 	Linker.link(g_credentials_get_unix_pid, "g_credentials_get_unix_pid", LIBRARY_GIO);
294 	Linker.link(g_credentials_get_unix_user, "g_credentials_get_unix_user", LIBRARY_GIO);
295 	Linker.link(g_credentials_is_same_user, "g_credentials_is_same_user", LIBRARY_GIO);
296 	Linker.link(g_credentials_set_native, "g_credentials_set_native", LIBRARY_GIO);
297 	Linker.link(g_credentials_set_unix_user, "g_credentials_set_unix_user", LIBRARY_GIO);
298 	Linker.link(g_credentials_to_string, "g_credentials_to_string", LIBRARY_GIO);
299 
300 	// gio.DBusActionGroup
301 
302 	Linker.link(g_dbus_action_group_get_type, "g_dbus_action_group_get_type", LIBRARY_GIO);
303 	Linker.link(g_dbus_action_group_get, "g_dbus_action_group_get", LIBRARY_GIO);
304 
305 	// gio.DBusAnnotationInfo
306 
307 	Linker.link(g_dbus_annotation_info_get_type, "g_dbus_annotation_info_get_type", LIBRARY_GIO);
308 	Linker.link(g_dbus_annotation_info_ref, "g_dbus_annotation_info_ref", LIBRARY_GIO);
309 	Linker.link(g_dbus_annotation_info_unref, "g_dbus_annotation_info_unref", LIBRARY_GIO);
310 	Linker.link(g_dbus_annotation_info_lookup, "g_dbus_annotation_info_lookup", LIBRARY_GIO);
311 
312 	// gio.DBusArgInfo
313 
314 	Linker.link(g_dbus_arg_info_get_type, "g_dbus_arg_info_get_type", LIBRARY_GIO);
315 	Linker.link(g_dbus_arg_info_ref, "g_dbus_arg_info_ref", LIBRARY_GIO);
316 	Linker.link(g_dbus_arg_info_unref, "g_dbus_arg_info_unref", LIBRARY_GIO);
317 
318 	// gio.DBusAuthObserver
319 
320 	Linker.link(g_dbus_auth_observer_get_type, "g_dbus_auth_observer_get_type", LIBRARY_GIO);
321 	Linker.link(g_dbus_auth_observer_new, "g_dbus_auth_observer_new", LIBRARY_GIO);
322 	Linker.link(g_dbus_auth_observer_allow_mechanism, "g_dbus_auth_observer_allow_mechanism", LIBRARY_GIO);
323 	Linker.link(g_dbus_auth_observer_authorize_authenticated_peer, "g_dbus_auth_observer_authorize_authenticated_peer", LIBRARY_GIO);
324 
325 	// gio.DBusConnection
326 
327 	Linker.link(g_dbus_connection_get_type, "g_dbus_connection_get_type", LIBRARY_GIO);
328 	Linker.link(g_dbus_connection_new_finish, "g_dbus_connection_new_finish", LIBRARY_GIO);
329 	Linker.link(g_dbus_connection_new_for_address_finish, "g_dbus_connection_new_for_address_finish", LIBRARY_GIO);
330 	Linker.link(g_dbus_connection_new_for_address_sync, "g_dbus_connection_new_for_address_sync", LIBRARY_GIO);
331 	Linker.link(g_dbus_connection_new_sync, "g_dbus_connection_new_sync", LIBRARY_GIO);
332 	Linker.link(g_dbus_connection_new, "g_dbus_connection_new", LIBRARY_GIO);
333 	Linker.link(g_dbus_connection_new_for_address, "g_dbus_connection_new_for_address", LIBRARY_GIO);
334 	Linker.link(g_dbus_connection_add_filter, "g_dbus_connection_add_filter", LIBRARY_GIO);
335 	Linker.link(g_dbus_connection_call, "g_dbus_connection_call", LIBRARY_GIO);
336 	Linker.link(g_dbus_connection_call_finish, "g_dbus_connection_call_finish", LIBRARY_GIO);
337 	Linker.link(g_dbus_connection_call_sync, "g_dbus_connection_call_sync", LIBRARY_GIO);
338 	Linker.link(g_dbus_connection_call_with_unix_fd_list, "g_dbus_connection_call_with_unix_fd_list", LIBRARY_GIO);
339 	Linker.link(g_dbus_connection_call_with_unix_fd_list_finish, "g_dbus_connection_call_with_unix_fd_list_finish", LIBRARY_GIO);
340 	Linker.link(g_dbus_connection_call_with_unix_fd_list_sync, "g_dbus_connection_call_with_unix_fd_list_sync", LIBRARY_GIO);
341 	Linker.link(g_dbus_connection_close, "g_dbus_connection_close", LIBRARY_GIO);
342 	Linker.link(g_dbus_connection_close_finish, "g_dbus_connection_close_finish", LIBRARY_GIO);
343 	Linker.link(g_dbus_connection_close_sync, "g_dbus_connection_close_sync", LIBRARY_GIO);
344 	Linker.link(g_dbus_connection_emit_signal, "g_dbus_connection_emit_signal", LIBRARY_GIO);
345 	Linker.link(g_dbus_connection_export_action_group, "g_dbus_connection_export_action_group", LIBRARY_GIO);
346 	Linker.link(g_dbus_connection_export_menu_model, "g_dbus_connection_export_menu_model", LIBRARY_GIO);
347 	Linker.link(g_dbus_connection_flush, "g_dbus_connection_flush", LIBRARY_GIO);
348 	Linker.link(g_dbus_connection_flush_finish, "g_dbus_connection_flush_finish", LIBRARY_GIO);
349 	Linker.link(g_dbus_connection_flush_sync, "g_dbus_connection_flush_sync", LIBRARY_GIO);
350 	Linker.link(g_dbus_connection_get_capabilities, "g_dbus_connection_get_capabilities", LIBRARY_GIO);
351 	Linker.link(g_dbus_connection_get_exit_on_close, "g_dbus_connection_get_exit_on_close", LIBRARY_GIO);
352 	Linker.link(g_dbus_connection_get_flags, "g_dbus_connection_get_flags", LIBRARY_GIO);
353 	Linker.link(g_dbus_connection_get_guid, "g_dbus_connection_get_guid", LIBRARY_GIO);
354 	Linker.link(g_dbus_connection_get_last_serial, "g_dbus_connection_get_last_serial", LIBRARY_GIO);
355 	Linker.link(g_dbus_connection_get_peer_credentials, "g_dbus_connection_get_peer_credentials", LIBRARY_GIO);
356 	Linker.link(g_dbus_connection_get_stream, "g_dbus_connection_get_stream", LIBRARY_GIO);
357 	Linker.link(g_dbus_connection_get_unique_name, "g_dbus_connection_get_unique_name", LIBRARY_GIO);
358 	Linker.link(g_dbus_connection_is_closed, "g_dbus_connection_is_closed", LIBRARY_GIO);
359 	Linker.link(g_dbus_connection_register_object, "g_dbus_connection_register_object", LIBRARY_GIO);
360 	Linker.link(g_dbus_connection_register_object_with_closures, "g_dbus_connection_register_object_with_closures", LIBRARY_GIO);
361 	Linker.link(g_dbus_connection_register_subtree, "g_dbus_connection_register_subtree", LIBRARY_GIO);
362 	Linker.link(g_dbus_connection_remove_filter, "g_dbus_connection_remove_filter", LIBRARY_GIO);
363 	Linker.link(g_dbus_connection_send_message, "g_dbus_connection_send_message", LIBRARY_GIO);
364 	Linker.link(g_dbus_connection_send_message_with_reply, "g_dbus_connection_send_message_with_reply", LIBRARY_GIO);
365 	Linker.link(g_dbus_connection_send_message_with_reply_finish, "g_dbus_connection_send_message_with_reply_finish", LIBRARY_GIO);
366 	Linker.link(g_dbus_connection_send_message_with_reply_sync, "g_dbus_connection_send_message_with_reply_sync", LIBRARY_GIO);
367 	Linker.link(g_dbus_connection_set_exit_on_close, "g_dbus_connection_set_exit_on_close", LIBRARY_GIO);
368 	Linker.link(g_dbus_connection_signal_subscribe, "g_dbus_connection_signal_subscribe", LIBRARY_GIO);
369 	Linker.link(g_dbus_connection_signal_unsubscribe, "g_dbus_connection_signal_unsubscribe", LIBRARY_GIO);
370 	Linker.link(g_dbus_connection_start_message_processing, "g_dbus_connection_start_message_processing", LIBRARY_GIO);
371 	Linker.link(g_dbus_connection_unexport_action_group, "g_dbus_connection_unexport_action_group", LIBRARY_GIO);
372 	Linker.link(g_dbus_connection_unexport_menu_model, "g_dbus_connection_unexport_menu_model", LIBRARY_GIO);
373 	Linker.link(g_dbus_connection_unregister_object, "g_dbus_connection_unregister_object", LIBRARY_GIO);
374 	Linker.link(g_dbus_connection_unregister_subtree, "g_dbus_connection_unregister_subtree", LIBRARY_GIO);
375 	Linker.link(g_bus_get, "g_bus_get", LIBRARY_GIO);
376 	Linker.link(g_bus_get_finish, "g_bus_get_finish", LIBRARY_GIO);
377 	Linker.link(g_bus_get_sync, "g_bus_get_sync", LIBRARY_GIO);
378 
379 	// gio.DBusInterface
380 
381 	Linker.link(g_dbus_interface_get_type, "g_dbus_interface_get_type", LIBRARY_GIO);
382 	Linker.link(g_dbus_interface_dup_object, "g_dbus_interface_dup_object", LIBRARY_GIO);
383 	Linker.link(g_dbus_interface_get_info, "g_dbus_interface_get_info", LIBRARY_GIO);
384 	Linker.link(g_dbus_interface_get_object, "g_dbus_interface_get_object", LIBRARY_GIO);
385 	Linker.link(g_dbus_interface_set_object, "g_dbus_interface_set_object", LIBRARY_GIO);
386 
387 	// gio.DBusInterfaceInfo
388 
389 	Linker.link(g_dbus_interface_info_get_type, "g_dbus_interface_info_get_type", LIBRARY_GIO);
390 	Linker.link(g_dbus_interface_info_cache_build, "g_dbus_interface_info_cache_build", LIBRARY_GIO);
391 	Linker.link(g_dbus_interface_info_cache_release, "g_dbus_interface_info_cache_release", LIBRARY_GIO);
392 	Linker.link(g_dbus_interface_info_generate_xml, "g_dbus_interface_info_generate_xml", LIBRARY_GIO);
393 	Linker.link(g_dbus_interface_info_lookup_method, "g_dbus_interface_info_lookup_method", LIBRARY_GIO);
394 	Linker.link(g_dbus_interface_info_lookup_property, "g_dbus_interface_info_lookup_property", LIBRARY_GIO);
395 	Linker.link(g_dbus_interface_info_lookup_signal, "g_dbus_interface_info_lookup_signal", LIBRARY_GIO);
396 	Linker.link(g_dbus_interface_info_ref, "g_dbus_interface_info_ref", LIBRARY_GIO);
397 	Linker.link(g_dbus_interface_info_unref, "g_dbus_interface_info_unref", LIBRARY_GIO);
398 
399 	// gio.DBusInterfaceSkeleton
400 
401 	Linker.link(g_dbus_interface_skeleton_get_type, "g_dbus_interface_skeleton_get_type", LIBRARY_GIO);
402 	Linker.link(g_dbus_interface_skeleton_export, "g_dbus_interface_skeleton_export", LIBRARY_GIO);
403 	Linker.link(g_dbus_interface_skeleton_flush, "g_dbus_interface_skeleton_flush", LIBRARY_GIO);
404 	Linker.link(g_dbus_interface_skeleton_get_connection, "g_dbus_interface_skeleton_get_connection", LIBRARY_GIO);
405 	Linker.link(g_dbus_interface_skeleton_get_connections, "g_dbus_interface_skeleton_get_connections", LIBRARY_GIO);
406 	Linker.link(g_dbus_interface_skeleton_get_flags, "g_dbus_interface_skeleton_get_flags", LIBRARY_GIO);
407 	Linker.link(g_dbus_interface_skeleton_get_info, "g_dbus_interface_skeleton_get_info", LIBRARY_GIO);
408 	Linker.link(g_dbus_interface_skeleton_get_object_path, "g_dbus_interface_skeleton_get_object_path", LIBRARY_GIO);
409 	Linker.link(g_dbus_interface_skeleton_get_properties, "g_dbus_interface_skeleton_get_properties", LIBRARY_GIO);
410 	Linker.link(g_dbus_interface_skeleton_get_vtable, "g_dbus_interface_skeleton_get_vtable", LIBRARY_GIO);
411 	Linker.link(g_dbus_interface_skeleton_has_connection, "g_dbus_interface_skeleton_has_connection", LIBRARY_GIO);
412 	Linker.link(g_dbus_interface_skeleton_set_flags, "g_dbus_interface_skeleton_set_flags", LIBRARY_GIO);
413 	Linker.link(g_dbus_interface_skeleton_unexport, "g_dbus_interface_skeleton_unexport", LIBRARY_GIO);
414 	Linker.link(g_dbus_interface_skeleton_unexport_from_connection, "g_dbus_interface_skeleton_unexport_from_connection", LIBRARY_GIO);
415 
416 	// gio.DBusMenuModel
417 
418 	Linker.link(g_dbus_menu_model_get_type, "g_dbus_menu_model_get_type", LIBRARY_GIO);
419 	Linker.link(g_dbus_menu_model_get, "g_dbus_menu_model_get", LIBRARY_GIO);
420 
421 	// gio.DBusMessage
422 
423 	Linker.link(g_dbus_message_get_type, "g_dbus_message_get_type", LIBRARY_GIO);
424 	Linker.link(g_dbus_message_new, "g_dbus_message_new", LIBRARY_GIO);
425 	Linker.link(g_dbus_message_new_from_blob, "g_dbus_message_new_from_blob", LIBRARY_GIO);
426 	Linker.link(g_dbus_message_new_method_call, "g_dbus_message_new_method_call", LIBRARY_GIO);
427 	Linker.link(g_dbus_message_new_signal, "g_dbus_message_new_signal", LIBRARY_GIO);
428 	Linker.link(g_dbus_message_bytes_needed, "g_dbus_message_bytes_needed", LIBRARY_GIO);
429 	Linker.link(g_dbus_message_copy, "g_dbus_message_copy", LIBRARY_GIO);
430 	Linker.link(g_dbus_message_get_arg0, "g_dbus_message_get_arg0", LIBRARY_GIO);
431 	Linker.link(g_dbus_message_get_body, "g_dbus_message_get_body", LIBRARY_GIO);
432 	Linker.link(g_dbus_message_get_byte_order, "g_dbus_message_get_byte_order", LIBRARY_GIO);
433 	Linker.link(g_dbus_message_get_destination, "g_dbus_message_get_destination", LIBRARY_GIO);
434 	Linker.link(g_dbus_message_get_error_name, "g_dbus_message_get_error_name", LIBRARY_GIO);
435 	Linker.link(g_dbus_message_get_flags, "g_dbus_message_get_flags", LIBRARY_GIO);
436 	Linker.link(g_dbus_message_get_header, "g_dbus_message_get_header", LIBRARY_GIO);
437 	Linker.link(g_dbus_message_get_header_fields, "g_dbus_message_get_header_fields", LIBRARY_GIO);
438 	Linker.link(g_dbus_message_get_interface, "g_dbus_message_get_interface", LIBRARY_GIO);
439 	Linker.link(g_dbus_message_get_locked, "g_dbus_message_get_locked", LIBRARY_GIO);
440 	Linker.link(g_dbus_message_get_member, "g_dbus_message_get_member", LIBRARY_GIO);
441 	Linker.link(g_dbus_message_get_message_type, "g_dbus_message_get_message_type", LIBRARY_GIO);
442 	Linker.link(g_dbus_message_get_num_unix_fds, "g_dbus_message_get_num_unix_fds", LIBRARY_GIO);
443 	Linker.link(g_dbus_message_get_path, "g_dbus_message_get_path", LIBRARY_GIO);
444 	Linker.link(g_dbus_message_get_reply_serial, "g_dbus_message_get_reply_serial", LIBRARY_GIO);
445 	Linker.link(g_dbus_message_get_sender, "g_dbus_message_get_sender", LIBRARY_GIO);
446 	Linker.link(g_dbus_message_get_serial, "g_dbus_message_get_serial", LIBRARY_GIO);
447 	Linker.link(g_dbus_message_get_signature, "g_dbus_message_get_signature", LIBRARY_GIO);
448 	Linker.link(g_dbus_message_get_unix_fd_list, "g_dbus_message_get_unix_fd_list", LIBRARY_GIO);
449 	Linker.link(g_dbus_message_lock, "g_dbus_message_lock", LIBRARY_GIO);
450 	Linker.link(g_dbus_message_new_method_error, "g_dbus_message_new_method_error", LIBRARY_GIO);
451 	Linker.link(g_dbus_message_new_method_error_literal, "g_dbus_message_new_method_error_literal", LIBRARY_GIO);
452 	Linker.link(g_dbus_message_new_method_error_valist, "g_dbus_message_new_method_error_valist", LIBRARY_GIO);
453 	Linker.link(g_dbus_message_new_method_reply, "g_dbus_message_new_method_reply", LIBRARY_GIO);
454 	Linker.link(g_dbus_message_print, "g_dbus_message_print", LIBRARY_GIO);
455 	Linker.link(g_dbus_message_set_body, "g_dbus_message_set_body", LIBRARY_GIO);
456 	Linker.link(g_dbus_message_set_byte_order, "g_dbus_message_set_byte_order", LIBRARY_GIO);
457 	Linker.link(g_dbus_message_set_destination, "g_dbus_message_set_destination", LIBRARY_GIO);
458 	Linker.link(g_dbus_message_set_error_name, "g_dbus_message_set_error_name", LIBRARY_GIO);
459 	Linker.link(g_dbus_message_set_flags, "g_dbus_message_set_flags", LIBRARY_GIO);
460 	Linker.link(g_dbus_message_set_header, "g_dbus_message_set_header", LIBRARY_GIO);
461 	Linker.link(g_dbus_message_set_interface, "g_dbus_message_set_interface", LIBRARY_GIO);
462 	Linker.link(g_dbus_message_set_member, "g_dbus_message_set_member", LIBRARY_GIO);
463 	Linker.link(g_dbus_message_set_message_type, "g_dbus_message_set_message_type", LIBRARY_GIO);
464 	Linker.link(g_dbus_message_set_num_unix_fds, "g_dbus_message_set_num_unix_fds", LIBRARY_GIO);
465 	Linker.link(g_dbus_message_set_path, "g_dbus_message_set_path", LIBRARY_GIO);
466 	Linker.link(g_dbus_message_set_reply_serial, "g_dbus_message_set_reply_serial", LIBRARY_GIO);
467 	Linker.link(g_dbus_message_set_sender, "g_dbus_message_set_sender", LIBRARY_GIO);
468 	Linker.link(g_dbus_message_set_serial, "g_dbus_message_set_serial", LIBRARY_GIO);
469 	Linker.link(g_dbus_message_set_signature, "g_dbus_message_set_signature", LIBRARY_GIO);
470 	Linker.link(g_dbus_message_set_unix_fd_list, "g_dbus_message_set_unix_fd_list", LIBRARY_GIO);
471 	Linker.link(g_dbus_message_to_blob, "g_dbus_message_to_blob", LIBRARY_GIO);
472 	Linker.link(g_dbus_message_to_gerror, "g_dbus_message_to_gerror", LIBRARY_GIO);
473 
474 	// gio.DBusMethodInfo
475 
476 	Linker.link(g_dbus_method_info_get_type, "g_dbus_method_info_get_type", LIBRARY_GIO);
477 	Linker.link(g_dbus_method_info_ref, "g_dbus_method_info_ref", LIBRARY_GIO);
478 	Linker.link(g_dbus_method_info_unref, "g_dbus_method_info_unref", LIBRARY_GIO);
479 
480 	// gio.DBusMethodInvocation
481 
482 	Linker.link(g_dbus_method_invocation_get_type, "g_dbus_method_invocation_get_type", LIBRARY_GIO);
483 	Linker.link(g_dbus_method_invocation_get_connection, "g_dbus_method_invocation_get_connection", LIBRARY_GIO);
484 	Linker.link(g_dbus_method_invocation_get_interface_name, "g_dbus_method_invocation_get_interface_name", LIBRARY_GIO);
485 	Linker.link(g_dbus_method_invocation_get_message, "g_dbus_method_invocation_get_message", LIBRARY_GIO);
486 	Linker.link(g_dbus_method_invocation_get_method_info, "g_dbus_method_invocation_get_method_info", LIBRARY_GIO);
487 	Linker.link(g_dbus_method_invocation_get_method_name, "g_dbus_method_invocation_get_method_name", LIBRARY_GIO);
488 	Linker.link(g_dbus_method_invocation_get_object_path, "g_dbus_method_invocation_get_object_path", LIBRARY_GIO);
489 	Linker.link(g_dbus_method_invocation_get_parameters, "g_dbus_method_invocation_get_parameters", LIBRARY_GIO);
490 	Linker.link(g_dbus_method_invocation_get_property_info, "g_dbus_method_invocation_get_property_info", LIBRARY_GIO);
491 	Linker.link(g_dbus_method_invocation_get_sender, "g_dbus_method_invocation_get_sender", LIBRARY_GIO);
492 	Linker.link(g_dbus_method_invocation_get_user_data, "g_dbus_method_invocation_get_user_data", LIBRARY_GIO);
493 	Linker.link(g_dbus_method_invocation_return_dbus_error, "g_dbus_method_invocation_return_dbus_error", LIBRARY_GIO);
494 	Linker.link(g_dbus_method_invocation_return_error, "g_dbus_method_invocation_return_error", LIBRARY_GIO);
495 	Linker.link(g_dbus_method_invocation_return_error_literal, "g_dbus_method_invocation_return_error_literal", LIBRARY_GIO);
496 	Linker.link(g_dbus_method_invocation_return_error_valist, "g_dbus_method_invocation_return_error_valist", LIBRARY_GIO);
497 	Linker.link(g_dbus_method_invocation_return_gerror, "g_dbus_method_invocation_return_gerror", LIBRARY_GIO);
498 	Linker.link(g_dbus_method_invocation_return_value, "g_dbus_method_invocation_return_value", LIBRARY_GIO);
499 	Linker.link(g_dbus_method_invocation_return_value_with_unix_fd_list, "g_dbus_method_invocation_return_value_with_unix_fd_list", LIBRARY_GIO);
500 	Linker.link(g_dbus_method_invocation_take_error, "g_dbus_method_invocation_take_error", LIBRARY_GIO);
501 
502 	// gio.DBusNodeInfo
503 
504 	Linker.link(g_dbus_node_info_get_type, "g_dbus_node_info_get_type", LIBRARY_GIO);
505 	Linker.link(g_dbus_node_info_new_for_xml, "g_dbus_node_info_new_for_xml", LIBRARY_GIO);
506 	Linker.link(g_dbus_node_info_generate_xml, "g_dbus_node_info_generate_xml", LIBRARY_GIO);
507 	Linker.link(g_dbus_node_info_lookup_interface, "g_dbus_node_info_lookup_interface", LIBRARY_GIO);
508 	Linker.link(g_dbus_node_info_ref, "g_dbus_node_info_ref", LIBRARY_GIO);
509 	Linker.link(g_dbus_node_info_unref, "g_dbus_node_info_unref", LIBRARY_GIO);
510 
511 	// gio.DBusObject
512 
513 	Linker.link(g_dbus_object_get_type, "g_dbus_object_get_type", LIBRARY_GIO);
514 	Linker.link(g_dbus_object_get_interface, "g_dbus_object_get_interface", LIBRARY_GIO);
515 	Linker.link(g_dbus_object_get_interfaces, "g_dbus_object_get_interfaces", LIBRARY_GIO);
516 	Linker.link(g_dbus_object_get_object_path, "g_dbus_object_get_object_path", LIBRARY_GIO);
517 
518 	// gio.DBusObjectManager
519 
520 	Linker.link(g_dbus_object_manager_get_type, "g_dbus_object_manager_get_type", LIBRARY_GIO);
521 	Linker.link(g_dbus_object_manager_get_interface, "g_dbus_object_manager_get_interface", LIBRARY_GIO);
522 	Linker.link(g_dbus_object_manager_get_object, "g_dbus_object_manager_get_object", LIBRARY_GIO);
523 	Linker.link(g_dbus_object_manager_get_object_path, "g_dbus_object_manager_get_object_path", LIBRARY_GIO);
524 	Linker.link(g_dbus_object_manager_get_objects, "g_dbus_object_manager_get_objects", LIBRARY_GIO);
525 
526 	// gio.DBusObjectManagerClient
527 
528 	Linker.link(g_dbus_object_manager_client_get_type, "g_dbus_object_manager_client_get_type", LIBRARY_GIO);
529 	Linker.link(g_dbus_object_manager_client_new_finish, "g_dbus_object_manager_client_new_finish", LIBRARY_GIO);
530 	Linker.link(g_dbus_object_manager_client_new_for_bus_finish, "g_dbus_object_manager_client_new_for_bus_finish", LIBRARY_GIO);
531 	Linker.link(g_dbus_object_manager_client_new_for_bus_sync, "g_dbus_object_manager_client_new_for_bus_sync", LIBRARY_GIO);
532 	Linker.link(g_dbus_object_manager_client_new_sync, "g_dbus_object_manager_client_new_sync", LIBRARY_GIO);
533 	Linker.link(g_dbus_object_manager_client_new, "g_dbus_object_manager_client_new", LIBRARY_GIO);
534 	Linker.link(g_dbus_object_manager_client_new_for_bus, "g_dbus_object_manager_client_new_for_bus", LIBRARY_GIO);
535 	Linker.link(g_dbus_object_manager_client_get_connection, "g_dbus_object_manager_client_get_connection", LIBRARY_GIO);
536 	Linker.link(g_dbus_object_manager_client_get_flags, "g_dbus_object_manager_client_get_flags", LIBRARY_GIO);
537 	Linker.link(g_dbus_object_manager_client_get_name, "g_dbus_object_manager_client_get_name", LIBRARY_GIO);
538 	Linker.link(g_dbus_object_manager_client_get_name_owner, "g_dbus_object_manager_client_get_name_owner", LIBRARY_GIO);
539 
540 	// gio.DBusObjectManagerServer
541 
542 	Linker.link(g_dbus_object_manager_server_get_type, "g_dbus_object_manager_server_get_type", LIBRARY_GIO);
543 	Linker.link(g_dbus_object_manager_server_new, "g_dbus_object_manager_server_new", LIBRARY_GIO);
544 	Linker.link(g_dbus_object_manager_server_export, "g_dbus_object_manager_server_export", LIBRARY_GIO);
545 	Linker.link(g_dbus_object_manager_server_export_uniquely, "g_dbus_object_manager_server_export_uniquely", LIBRARY_GIO);
546 	Linker.link(g_dbus_object_manager_server_get_connection, "g_dbus_object_manager_server_get_connection", LIBRARY_GIO);
547 	Linker.link(g_dbus_object_manager_server_is_exported, "g_dbus_object_manager_server_is_exported", LIBRARY_GIO);
548 	Linker.link(g_dbus_object_manager_server_set_connection, "g_dbus_object_manager_server_set_connection", LIBRARY_GIO);
549 	Linker.link(g_dbus_object_manager_server_unexport, "g_dbus_object_manager_server_unexport", LIBRARY_GIO);
550 
551 	// gio.DBusObjectProxy
552 
553 	Linker.link(g_dbus_object_proxy_get_type, "g_dbus_object_proxy_get_type", LIBRARY_GIO);
554 	Linker.link(g_dbus_object_proxy_new, "g_dbus_object_proxy_new", LIBRARY_GIO);
555 	Linker.link(g_dbus_object_proxy_get_connection, "g_dbus_object_proxy_get_connection", LIBRARY_GIO);
556 
557 	// gio.DBusObjectSkeleton
558 
559 	Linker.link(g_dbus_object_skeleton_get_type, "g_dbus_object_skeleton_get_type", LIBRARY_GIO);
560 	Linker.link(g_dbus_object_skeleton_new, "g_dbus_object_skeleton_new", LIBRARY_GIO);
561 	Linker.link(g_dbus_object_skeleton_add_interface, "g_dbus_object_skeleton_add_interface", LIBRARY_GIO);
562 	Linker.link(g_dbus_object_skeleton_flush, "g_dbus_object_skeleton_flush", LIBRARY_GIO);
563 	Linker.link(g_dbus_object_skeleton_remove_interface, "g_dbus_object_skeleton_remove_interface", LIBRARY_GIO);
564 	Linker.link(g_dbus_object_skeleton_remove_interface_by_name, "g_dbus_object_skeleton_remove_interface_by_name", LIBRARY_GIO);
565 	Linker.link(g_dbus_object_skeleton_set_object_path, "g_dbus_object_skeleton_set_object_path", LIBRARY_GIO);
566 
567 	// gio.DBusPropertyInfo
568 
569 	Linker.link(g_dbus_property_info_get_type, "g_dbus_property_info_get_type", LIBRARY_GIO);
570 	Linker.link(g_dbus_property_info_ref, "g_dbus_property_info_ref", LIBRARY_GIO);
571 	Linker.link(g_dbus_property_info_unref, "g_dbus_property_info_unref", LIBRARY_GIO);
572 
573 	// gio.DBusProxy
574 
575 	Linker.link(g_dbus_proxy_get_type, "g_dbus_proxy_get_type", LIBRARY_GIO);
576 	Linker.link(g_dbus_proxy_new_finish, "g_dbus_proxy_new_finish", LIBRARY_GIO);
577 	Linker.link(g_dbus_proxy_new_for_bus_finish, "g_dbus_proxy_new_for_bus_finish", LIBRARY_GIO);
578 	Linker.link(g_dbus_proxy_new_for_bus_sync, "g_dbus_proxy_new_for_bus_sync", LIBRARY_GIO);
579 	Linker.link(g_dbus_proxy_new_sync, "g_dbus_proxy_new_sync", LIBRARY_GIO);
580 	Linker.link(g_dbus_proxy_new, "g_dbus_proxy_new", LIBRARY_GIO);
581 	Linker.link(g_dbus_proxy_new_for_bus, "g_dbus_proxy_new_for_bus", LIBRARY_GIO);
582 	Linker.link(g_dbus_proxy_call, "g_dbus_proxy_call", LIBRARY_GIO);
583 	Linker.link(g_dbus_proxy_call_finish, "g_dbus_proxy_call_finish", LIBRARY_GIO);
584 	Linker.link(g_dbus_proxy_call_sync, "g_dbus_proxy_call_sync", LIBRARY_GIO);
585 	Linker.link(g_dbus_proxy_call_with_unix_fd_list, "g_dbus_proxy_call_with_unix_fd_list", LIBRARY_GIO);
586 	Linker.link(g_dbus_proxy_call_with_unix_fd_list_finish, "g_dbus_proxy_call_with_unix_fd_list_finish", LIBRARY_GIO);
587 	Linker.link(g_dbus_proxy_call_with_unix_fd_list_sync, "g_dbus_proxy_call_with_unix_fd_list_sync", LIBRARY_GIO);
588 	Linker.link(g_dbus_proxy_get_cached_property, "g_dbus_proxy_get_cached_property", LIBRARY_GIO);
589 	Linker.link(g_dbus_proxy_get_cached_property_names, "g_dbus_proxy_get_cached_property_names", LIBRARY_GIO);
590 	Linker.link(g_dbus_proxy_get_connection, "g_dbus_proxy_get_connection", LIBRARY_GIO);
591 	Linker.link(g_dbus_proxy_get_default_timeout, "g_dbus_proxy_get_default_timeout", LIBRARY_GIO);
592 	Linker.link(g_dbus_proxy_get_flags, "g_dbus_proxy_get_flags", LIBRARY_GIO);
593 	Linker.link(g_dbus_proxy_get_interface_info, "g_dbus_proxy_get_interface_info", LIBRARY_GIO);
594 	Linker.link(g_dbus_proxy_get_interface_name, "g_dbus_proxy_get_interface_name", LIBRARY_GIO);
595 	Linker.link(g_dbus_proxy_get_name, "g_dbus_proxy_get_name", LIBRARY_GIO);
596 	Linker.link(g_dbus_proxy_get_name_owner, "g_dbus_proxy_get_name_owner", LIBRARY_GIO);
597 	Linker.link(g_dbus_proxy_get_object_path, "g_dbus_proxy_get_object_path", LIBRARY_GIO);
598 	Linker.link(g_dbus_proxy_set_cached_property, "g_dbus_proxy_set_cached_property", LIBRARY_GIO);
599 	Linker.link(g_dbus_proxy_set_default_timeout, "g_dbus_proxy_set_default_timeout", LIBRARY_GIO);
600 	Linker.link(g_dbus_proxy_set_interface_info, "g_dbus_proxy_set_interface_info", LIBRARY_GIO);
601 
602 	// gio.DBusServer
603 
604 	Linker.link(g_dbus_server_get_type, "g_dbus_server_get_type", LIBRARY_GIO);
605 	Linker.link(g_dbus_server_new_sync, "g_dbus_server_new_sync", LIBRARY_GIO);
606 	Linker.link(g_dbus_server_get_client_address, "g_dbus_server_get_client_address", LIBRARY_GIO);
607 	Linker.link(g_dbus_server_get_flags, "g_dbus_server_get_flags", LIBRARY_GIO);
608 	Linker.link(g_dbus_server_get_guid, "g_dbus_server_get_guid", LIBRARY_GIO);
609 	Linker.link(g_dbus_server_is_active, "g_dbus_server_is_active", LIBRARY_GIO);
610 	Linker.link(g_dbus_server_start, "g_dbus_server_start", LIBRARY_GIO);
611 	Linker.link(g_dbus_server_stop, "g_dbus_server_stop", LIBRARY_GIO);
612 
613 	// gio.DBusSignalInfo
614 
615 	Linker.link(g_dbus_signal_info_get_type, "g_dbus_signal_info_get_type", LIBRARY_GIO);
616 	Linker.link(g_dbus_signal_info_ref, "g_dbus_signal_info_ref", LIBRARY_GIO);
617 	Linker.link(g_dbus_signal_info_unref, "g_dbus_signal_info_unref", LIBRARY_GIO);
618 
619 	// gio.DataInputStream
620 
621 	Linker.link(g_data_input_stream_get_type, "g_data_input_stream_get_type", LIBRARY_GIO);
622 	Linker.link(g_data_input_stream_new, "g_data_input_stream_new", LIBRARY_GIO);
623 	Linker.link(g_data_input_stream_get_byte_order, "g_data_input_stream_get_byte_order", LIBRARY_GIO);
624 	Linker.link(g_data_input_stream_get_newline_type, "g_data_input_stream_get_newline_type", LIBRARY_GIO);
625 	Linker.link(g_data_input_stream_read_byte, "g_data_input_stream_read_byte", LIBRARY_GIO);
626 	Linker.link(g_data_input_stream_read_int16, "g_data_input_stream_read_int16", LIBRARY_GIO);
627 	Linker.link(g_data_input_stream_read_int32, "g_data_input_stream_read_int32", LIBRARY_GIO);
628 	Linker.link(g_data_input_stream_read_int64, "g_data_input_stream_read_int64", LIBRARY_GIO);
629 	Linker.link(g_data_input_stream_read_line, "g_data_input_stream_read_line", LIBRARY_GIO);
630 	Linker.link(g_data_input_stream_read_line_async, "g_data_input_stream_read_line_async", LIBRARY_GIO);
631 	Linker.link(g_data_input_stream_read_line_finish, "g_data_input_stream_read_line_finish", LIBRARY_GIO);
632 	Linker.link(g_data_input_stream_read_line_finish_utf8, "g_data_input_stream_read_line_finish_utf8", LIBRARY_GIO);
633 	Linker.link(g_data_input_stream_read_line_utf8, "g_data_input_stream_read_line_utf8", LIBRARY_GIO);
634 	Linker.link(g_data_input_stream_read_uint16, "g_data_input_stream_read_uint16", LIBRARY_GIO);
635 	Linker.link(g_data_input_stream_read_uint32, "g_data_input_stream_read_uint32", LIBRARY_GIO);
636 	Linker.link(g_data_input_stream_read_uint64, "g_data_input_stream_read_uint64", LIBRARY_GIO);
637 	Linker.link(g_data_input_stream_read_until, "g_data_input_stream_read_until", LIBRARY_GIO);
638 	Linker.link(g_data_input_stream_read_until_async, "g_data_input_stream_read_until_async", LIBRARY_GIO);
639 	Linker.link(g_data_input_stream_read_until_finish, "g_data_input_stream_read_until_finish", LIBRARY_GIO);
640 	Linker.link(g_data_input_stream_read_upto, "g_data_input_stream_read_upto", LIBRARY_GIO);
641 	Linker.link(g_data_input_stream_read_upto_async, "g_data_input_stream_read_upto_async", LIBRARY_GIO);
642 	Linker.link(g_data_input_stream_read_upto_finish, "g_data_input_stream_read_upto_finish", LIBRARY_GIO);
643 	Linker.link(g_data_input_stream_set_byte_order, "g_data_input_stream_set_byte_order", LIBRARY_GIO);
644 	Linker.link(g_data_input_stream_set_newline_type, "g_data_input_stream_set_newline_type", LIBRARY_GIO);
645 
646 	// gio.DataOutputStream
647 
648 	Linker.link(g_data_output_stream_get_type, "g_data_output_stream_get_type", LIBRARY_GIO);
649 	Linker.link(g_data_output_stream_new, "g_data_output_stream_new", LIBRARY_GIO);
650 	Linker.link(g_data_output_stream_get_byte_order, "g_data_output_stream_get_byte_order", LIBRARY_GIO);
651 	Linker.link(g_data_output_stream_put_byte, "g_data_output_stream_put_byte", LIBRARY_GIO);
652 	Linker.link(g_data_output_stream_put_int16, "g_data_output_stream_put_int16", LIBRARY_GIO);
653 	Linker.link(g_data_output_stream_put_int32, "g_data_output_stream_put_int32", LIBRARY_GIO);
654 	Linker.link(g_data_output_stream_put_int64, "g_data_output_stream_put_int64", LIBRARY_GIO);
655 	Linker.link(g_data_output_stream_put_string, "g_data_output_stream_put_string", LIBRARY_GIO);
656 	Linker.link(g_data_output_stream_put_uint16, "g_data_output_stream_put_uint16", LIBRARY_GIO);
657 	Linker.link(g_data_output_stream_put_uint32, "g_data_output_stream_put_uint32", LIBRARY_GIO);
658 	Linker.link(g_data_output_stream_put_uint64, "g_data_output_stream_put_uint64", LIBRARY_GIO);
659 	Linker.link(g_data_output_stream_set_byte_order, "g_data_output_stream_set_byte_order", LIBRARY_GIO);
660 
661 	// gio.DatagramBased
662 
663 	Linker.link(g_datagram_based_get_type, "g_datagram_based_get_type", LIBRARY_GIO);
664 	Linker.link(g_datagram_based_condition_check, "g_datagram_based_condition_check", LIBRARY_GIO);
665 	Linker.link(g_datagram_based_condition_wait, "g_datagram_based_condition_wait", LIBRARY_GIO);
666 	Linker.link(g_datagram_based_create_source, "g_datagram_based_create_source", LIBRARY_GIO);
667 	Linker.link(g_datagram_based_receive_messages, "g_datagram_based_receive_messages", LIBRARY_GIO);
668 	Linker.link(g_datagram_based_send_messages, "g_datagram_based_send_messages", LIBRARY_GIO);
669 
670 	// gio.DebugController
671 
672 	Linker.link(g_debug_controller_get_type, "g_debug_controller_get_type", LIBRARY_GIO);
673 	Linker.link(g_debug_controller_get_debug_enabled, "g_debug_controller_get_debug_enabled", LIBRARY_GIO);
674 	Linker.link(g_debug_controller_set_debug_enabled, "g_debug_controller_set_debug_enabled", LIBRARY_GIO);
675 
676 	// gio.DebugControllerDBus
677 
678 	Linker.link(g_debug_controller_dbus_get_type, "g_debug_controller_dbus_get_type", LIBRARY_GIO);
679 	Linker.link(g_debug_controller_dbus_new, "g_debug_controller_dbus_new", LIBRARY_GIO);
680 	Linker.link(g_debug_controller_dbus_stop, "g_debug_controller_dbus_stop", LIBRARY_GIO);
681 
682 	// gio.DesktopAppInfo
683 
684 	Linker.link(g_desktop_app_info_get_type, "g_desktop_app_info_get_type", LIBRARY_GIO);
685 	Linker.link(g_desktop_app_info_new, "g_desktop_app_info_new", LIBRARY_GIO);
686 	Linker.link(g_desktop_app_info_new_from_filename, "g_desktop_app_info_new_from_filename", LIBRARY_GIO);
687 	Linker.link(g_desktop_app_info_new_from_keyfile, "g_desktop_app_info_new_from_keyfile", LIBRARY_GIO);
688 	Linker.link(g_desktop_app_info_get_implementations, "g_desktop_app_info_get_implementations", LIBRARY_GIO);
689 	Linker.link(g_desktop_app_info_search, "g_desktop_app_info_search", LIBRARY_GIO);
690 	Linker.link(g_desktop_app_info_set_desktop_env, "g_desktop_app_info_set_desktop_env", LIBRARY_GIO);
691 	Linker.link(g_desktop_app_info_get_action_name, "g_desktop_app_info_get_action_name", LIBRARY_GIO);
692 	Linker.link(g_desktop_app_info_get_boolean, "g_desktop_app_info_get_boolean", LIBRARY_GIO);
693 	Linker.link(g_desktop_app_info_get_categories, "g_desktop_app_info_get_categories", LIBRARY_GIO);
694 	Linker.link(g_desktop_app_info_get_filename, "g_desktop_app_info_get_filename", LIBRARY_GIO);
695 	Linker.link(g_desktop_app_info_get_generic_name, "g_desktop_app_info_get_generic_name", LIBRARY_GIO);
696 	Linker.link(g_desktop_app_info_get_is_hidden, "g_desktop_app_info_get_is_hidden", LIBRARY_GIO);
697 	Linker.link(g_desktop_app_info_get_keywords, "g_desktop_app_info_get_keywords", LIBRARY_GIO);
698 	Linker.link(g_desktop_app_info_get_locale_string, "g_desktop_app_info_get_locale_string", LIBRARY_GIO);
699 	Linker.link(g_desktop_app_info_get_nodisplay, "g_desktop_app_info_get_nodisplay", LIBRARY_GIO);
700 	Linker.link(g_desktop_app_info_get_show_in, "g_desktop_app_info_get_show_in", LIBRARY_GIO);
701 	Linker.link(g_desktop_app_info_get_startup_wm_class, "g_desktop_app_info_get_startup_wm_class", LIBRARY_GIO);
702 	Linker.link(g_desktop_app_info_get_string, "g_desktop_app_info_get_string", LIBRARY_GIO);
703 	Linker.link(g_desktop_app_info_get_string_list, "g_desktop_app_info_get_string_list", LIBRARY_GIO);
704 	Linker.link(g_desktop_app_info_has_key, "g_desktop_app_info_has_key", LIBRARY_GIO);
705 	Linker.link(g_desktop_app_info_launch_action, "g_desktop_app_info_launch_action", LIBRARY_GIO);
706 	Linker.link(g_desktop_app_info_launch_uris_as_manager, "g_desktop_app_info_launch_uris_as_manager", LIBRARY_GIO);
707 	Linker.link(g_desktop_app_info_launch_uris_as_manager_with_fds, "g_desktop_app_info_launch_uris_as_manager_with_fds", LIBRARY_GIO);
708 	Linker.link(g_desktop_app_info_list_actions, "g_desktop_app_info_list_actions", LIBRARY_GIO);
709 
710 	// gio.DesktopAppInfoLookup
711 
712 	Linker.link(g_desktop_app_info_lookup_get_type, "g_desktop_app_info_lookup_get_type", LIBRARY_GIO);
713 	Linker.link(g_desktop_app_info_lookup_get_default_for_uri_scheme, "g_desktop_app_info_lookup_get_default_for_uri_scheme", LIBRARY_GIO);
714 
715 	// gio.Drive
716 
717 	Linker.link(g_drive_get_type, "g_drive_get_type", LIBRARY_GIO);
718 	Linker.link(g_drive_can_eject, "g_drive_can_eject", LIBRARY_GIO);
719 	Linker.link(g_drive_can_poll_for_media, "g_drive_can_poll_for_media", LIBRARY_GIO);
720 	Linker.link(g_drive_can_start, "g_drive_can_start", LIBRARY_GIO);
721 	Linker.link(g_drive_can_start_degraded, "g_drive_can_start_degraded", LIBRARY_GIO);
722 	Linker.link(g_drive_can_stop, "g_drive_can_stop", LIBRARY_GIO);
723 	Linker.link(g_drive_eject, "g_drive_eject", LIBRARY_GIO);
724 	Linker.link(g_drive_eject_finish, "g_drive_eject_finish", LIBRARY_GIO);
725 	Linker.link(g_drive_eject_with_operation, "g_drive_eject_with_operation", LIBRARY_GIO);
726 	Linker.link(g_drive_eject_with_operation_finish, "g_drive_eject_with_operation_finish", LIBRARY_GIO);
727 	Linker.link(g_drive_enumerate_identifiers, "g_drive_enumerate_identifiers", LIBRARY_GIO);
728 	Linker.link(g_drive_get_icon, "g_drive_get_icon", LIBRARY_GIO);
729 	Linker.link(g_drive_get_identifier, "g_drive_get_identifier", LIBRARY_GIO);
730 	Linker.link(g_drive_get_name, "g_drive_get_name", LIBRARY_GIO);
731 	Linker.link(g_drive_get_sort_key, "g_drive_get_sort_key", LIBRARY_GIO);
732 	Linker.link(g_drive_get_start_stop_type, "g_drive_get_start_stop_type", LIBRARY_GIO);
733 	Linker.link(g_drive_get_symbolic_icon, "g_drive_get_symbolic_icon", LIBRARY_GIO);
734 	Linker.link(g_drive_get_volumes, "g_drive_get_volumes", LIBRARY_GIO);
735 	Linker.link(g_drive_has_media, "g_drive_has_media", LIBRARY_GIO);
736 	Linker.link(g_drive_has_volumes, "g_drive_has_volumes", LIBRARY_GIO);
737 	Linker.link(g_drive_is_media_check_automatic, "g_drive_is_media_check_automatic", LIBRARY_GIO);
738 	Linker.link(g_drive_is_media_removable, "g_drive_is_media_removable", LIBRARY_GIO);
739 	Linker.link(g_drive_is_removable, "g_drive_is_removable", LIBRARY_GIO);
740 	Linker.link(g_drive_poll_for_media, "g_drive_poll_for_media", LIBRARY_GIO);
741 	Linker.link(g_drive_poll_for_media_finish, "g_drive_poll_for_media_finish", LIBRARY_GIO);
742 	Linker.link(g_drive_start, "g_drive_start", LIBRARY_GIO);
743 	Linker.link(g_drive_start_finish, "g_drive_start_finish", LIBRARY_GIO);
744 	Linker.link(g_drive_stop, "g_drive_stop", LIBRARY_GIO);
745 	Linker.link(g_drive_stop_finish, "g_drive_stop_finish", LIBRARY_GIO);
746 
747 	// gio.DtlsClientConnection
748 
749 	Linker.link(g_dtls_client_connection_get_type, "g_dtls_client_connection_get_type", LIBRARY_GIO);
750 	Linker.link(g_dtls_client_connection_new, "g_dtls_client_connection_new", LIBRARY_GIO);
751 	Linker.link(g_dtls_client_connection_get_accepted_cas, "g_dtls_client_connection_get_accepted_cas", LIBRARY_GIO);
752 	Linker.link(g_dtls_client_connection_get_server_identity, "g_dtls_client_connection_get_server_identity", LIBRARY_GIO);
753 	Linker.link(g_dtls_client_connection_get_validation_flags, "g_dtls_client_connection_get_validation_flags", LIBRARY_GIO);
754 	Linker.link(g_dtls_client_connection_set_server_identity, "g_dtls_client_connection_set_server_identity", LIBRARY_GIO);
755 	Linker.link(g_dtls_client_connection_set_validation_flags, "g_dtls_client_connection_set_validation_flags", LIBRARY_GIO);
756 
757 	// gio.DtlsConnection
758 
759 	Linker.link(g_dtls_connection_get_type, "g_dtls_connection_get_type", LIBRARY_GIO);
760 	Linker.link(g_dtls_connection_close, "g_dtls_connection_close", LIBRARY_GIO);
761 	Linker.link(g_dtls_connection_close_async, "g_dtls_connection_close_async", LIBRARY_GIO);
762 	Linker.link(g_dtls_connection_close_finish, "g_dtls_connection_close_finish", LIBRARY_GIO);
763 	Linker.link(g_dtls_connection_emit_accept_certificate, "g_dtls_connection_emit_accept_certificate", LIBRARY_GIO);
764 	Linker.link(g_dtls_connection_get_certificate, "g_dtls_connection_get_certificate", LIBRARY_GIO);
765 	Linker.link(g_dtls_connection_get_channel_binding_data, "g_dtls_connection_get_channel_binding_data", LIBRARY_GIO);
766 	Linker.link(g_dtls_connection_get_ciphersuite_name, "g_dtls_connection_get_ciphersuite_name", LIBRARY_GIO);
767 	Linker.link(g_dtls_connection_get_database, "g_dtls_connection_get_database", LIBRARY_GIO);
768 	Linker.link(g_dtls_connection_get_interaction, "g_dtls_connection_get_interaction", LIBRARY_GIO);
769 	Linker.link(g_dtls_connection_get_negotiated_protocol, "g_dtls_connection_get_negotiated_protocol", LIBRARY_GIO);
770 	Linker.link(g_dtls_connection_get_peer_certificate, "g_dtls_connection_get_peer_certificate", LIBRARY_GIO);
771 	Linker.link(g_dtls_connection_get_peer_certificate_errors, "g_dtls_connection_get_peer_certificate_errors", LIBRARY_GIO);
772 	Linker.link(g_dtls_connection_get_protocol_version, "g_dtls_connection_get_protocol_version", LIBRARY_GIO);
773 	Linker.link(g_dtls_connection_get_rehandshake_mode, "g_dtls_connection_get_rehandshake_mode", LIBRARY_GIO);
774 	Linker.link(g_dtls_connection_get_require_close_notify, "g_dtls_connection_get_require_close_notify", LIBRARY_GIO);
775 	Linker.link(g_dtls_connection_handshake, "g_dtls_connection_handshake", LIBRARY_GIO);
776 	Linker.link(g_dtls_connection_handshake_async, "g_dtls_connection_handshake_async", LIBRARY_GIO);
777 	Linker.link(g_dtls_connection_handshake_finish, "g_dtls_connection_handshake_finish", LIBRARY_GIO);
778 	Linker.link(g_dtls_connection_set_advertised_protocols, "g_dtls_connection_set_advertised_protocols", LIBRARY_GIO);
779 	Linker.link(g_dtls_connection_set_certificate, "g_dtls_connection_set_certificate", LIBRARY_GIO);
780 	Linker.link(g_dtls_connection_set_database, "g_dtls_connection_set_database", LIBRARY_GIO);
781 	Linker.link(g_dtls_connection_set_interaction, "g_dtls_connection_set_interaction", LIBRARY_GIO);
782 	Linker.link(g_dtls_connection_set_rehandshake_mode, "g_dtls_connection_set_rehandshake_mode", LIBRARY_GIO);
783 	Linker.link(g_dtls_connection_set_require_close_notify, "g_dtls_connection_set_require_close_notify", LIBRARY_GIO);
784 	Linker.link(g_dtls_connection_shutdown, "g_dtls_connection_shutdown", LIBRARY_GIO);
785 	Linker.link(g_dtls_connection_shutdown_async, "g_dtls_connection_shutdown_async", LIBRARY_GIO);
786 	Linker.link(g_dtls_connection_shutdown_finish, "g_dtls_connection_shutdown_finish", LIBRARY_GIO);
787 
788 	// gio.DtlsServerConnection
789 
790 	Linker.link(g_dtls_server_connection_get_type, "g_dtls_server_connection_get_type", LIBRARY_GIO);
791 	Linker.link(g_dtls_server_connection_new, "g_dtls_server_connection_new", LIBRARY_GIO);
792 
793 	// gio.Emblem
794 
795 	Linker.link(g_emblem_get_type, "g_emblem_get_type", LIBRARY_GIO);
796 	Linker.link(g_emblem_new, "g_emblem_new", LIBRARY_GIO);
797 	Linker.link(g_emblem_new_with_origin, "g_emblem_new_with_origin", LIBRARY_GIO);
798 	Linker.link(g_emblem_get_icon, "g_emblem_get_icon", LIBRARY_GIO);
799 	Linker.link(g_emblem_get_origin, "g_emblem_get_origin", LIBRARY_GIO);
800 
801 	// gio.EmblemedIcon
802 
803 	Linker.link(g_emblemed_icon_get_type, "g_emblemed_icon_get_type", LIBRARY_GIO);
804 	Linker.link(g_emblemed_icon_new, "g_emblemed_icon_new", LIBRARY_GIO);
805 	Linker.link(g_emblemed_icon_add_emblem, "g_emblemed_icon_add_emblem", LIBRARY_GIO);
806 	Linker.link(g_emblemed_icon_clear_emblems, "g_emblemed_icon_clear_emblems", LIBRARY_GIO);
807 	Linker.link(g_emblemed_icon_get_emblems, "g_emblemed_icon_get_emblems", LIBRARY_GIO);
808 	Linker.link(g_emblemed_icon_get_icon, "g_emblemed_icon_get_icon", LIBRARY_GIO);
809 
810 	// gio.File
811 
812 	Linker.link(g_file_get_type, "g_file_get_type", LIBRARY_GIO);
813 	Linker.link(g_file_new_build_filename, "g_file_new_build_filename", LIBRARY_GIO);
814 	Linker.link(g_file_new_for_commandline_arg, "g_file_new_for_commandline_arg", LIBRARY_GIO);
815 	Linker.link(g_file_new_for_commandline_arg_and_cwd, "g_file_new_for_commandline_arg_and_cwd", LIBRARY_GIO);
816 	Linker.link(g_file_new_for_path, "g_file_new_for_path", LIBRARY_GIO);
817 	Linker.link(g_file_new_for_uri, "g_file_new_for_uri", LIBRARY_GIO);
818 	Linker.link(g_file_new_tmp, "g_file_new_tmp", LIBRARY_GIO);
819 	Linker.link(g_file_parse_name, "g_file_parse_name", LIBRARY_GIO);
820 	Linker.link(g_file_append_to, "g_file_append_to", LIBRARY_GIO);
821 	Linker.link(g_file_append_to_async, "g_file_append_to_async", LIBRARY_GIO);
822 	Linker.link(g_file_append_to_finish, "g_file_append_to_finish", LIBRARY_GIO);
823 	Linker.link(g_file_build_attribute_list_for_copy, "g_file_build_attribute_list_for_copy", LIBRARY_GIO);
824 	Linker.link(g_file_copy, "g_file_copy", LIBRARY_GIO);
825 	Linker.link(g_file_copy_async, "g_file_copy_async", LIBRARY_GIO);
826 	Linker.link(g_file_copy_attributes, "g_file_copy_attributes", LIBRARY_GIO);
827 	Linker.link(g_file_copy_finish, "g_file_copy_finish", LIBRARY_GIO);
828 	Linker.link(g_file_create, "g_file_create", LIBRARY_GIO);
829 	Linker.link(g_file_create_async, "g_file_create_async", LIBRARY_GIO);
830 	Linker.link(g_file_create_finish, "g_file_create_finish", LIBRARY_GIO);
831 	Linker.link(g_file_create_readwrite, "g_file_create_readwrite", LIBRARY_GIO);
832 	Linker.link(g_file_create_readwrite_async, "g_file_create_readwrite_async", LIBRARY_GIO);
833 	Linker.link(g_file_create_readwrite_finish, "g_file_create_readwrite_finish", LIBRARY_GIO);
834 	Linker.link(g_file_delete, "g_file_delete", LIBRARY_GIO);
835 	Linker.link(g_file_delete_async, "g_file_delete_async", LIBRARY_GIO);
836 	Linker.link(g_file_delete_finish, "g_file_delete_finish", LIBRARY_GIO);
837 	Linker.link(g_file_dup, "g_file_dup", LIBRARY_GIO);
838 	Linker.link(g_file_eject_mountable, "g_file_eject_mountable", LIBRARY_GIO);
839 	Linker.link(g_file_eject_mountable_finish, "g_file_eject_mountable_finish", LIBRARY_GIO);
840 	Linker.link(g_file_eject_mountable_with_operation, "g_file_eject_mountable_with_operation", LIBRARY_GIO);
841 	Linker.link(g_file_eject_mountable_with_operation_finish, "g_file_eject_mountable_with_operation_finish", LIBRARY_GIO);
842 	Linker.link(g_file_enumerate_children, "g_file_enumerate_children", LIBRARY_GIO);
843 	Linker.link(g_file_enumerate_children_async, "g_file_enumerate_children_async", LIBRARY_GIO);
844 	Linker.link(g_file_enumerate_children_finish, "g_file_enumerate_children_finish", LIBRARY_GIO);
845 	Linker.link(g_file_equal, "g_file_equal", LIBRARY_GIO);
846 	Linker.link(g_file_find_enclosing_mount, "g_file_find_enclosing_mount", LIBRARY_GIO);
847 	Linker.link(g_file_find_enclosing_mount_async, "g_file_find_enclosing_mount_async", LIBRARY_GIO);
848 	Linker.link(g_file_find_enclosing_mount_finish, "g_file_find_enclosing_mount_finish", LIBRARY_GIO);
849 	Linker.link(g_file_get_basename, "g_file_get_basename", LIBRARY_GIO);
850 	Linker.link(g_file_get_child, "g_file_get_child", LIBRARY_GIO);
851 	Linker.link(g_file_get_child_for_display_name, "g_file_get_child_for_display_name", LIBRARY_GIO);
852 	Linker.link(g_file_get_parent, "g_file_get_parent", LIBRARY_GIO);
853 	Linker.link(g_file_get_parse_name, "g_file_get_parse_name", LIBRARY_GIO);
854 	Linker.link(g_file_get_path, "g_file_get_path", LIBRARY_GIO);
855 	Linker.link(g_file_get_relative_path, "g_file_get_relative_path", LIBRARY_GIO);
856 	Linker.link(g_file_get_uri, "g_file_get_uri", LIBRARY_GIO);
857 	Linker.link(g_file_get_uri_scheme, "g_file_get_uri_scheme", LIBRARY_GIO);
858 	Linker.link(g_file_has_parent, "g_file_has_parent", LIBRARY_GIO);
859 	Linker.link(g_file_has_prefix, "g_file_has_prefix", LIBRARY_GIO);
860 	Linker.link(g_file_has_uri_scheme, "g_file_has_uri_scheme", LIBRARY_GIO);
861 	Linker.link(g_file_hash, "g_file_hash", LIBRARY_GIO);
862 	Linker.link(g_file_is_native, "g_file_is_native", LIBRARY_GIO);
863 	Linker.link(g_file_load_bytes, "g_file_load_bytes", LIBRARY_GIO);
864 	Linker.link(g_file_load_bytes_async, "g_file_load_bytes_async", LIBRARY_GIO);
865 	Linker.link(g_file_load_bytes_finish, "g_file_load_bytes_finish", LIBRARY_GIO);
866 	Linker.link(g_file_load_contents, "g_file_load_contents", LIBRARY_GIO);
867 	Linker.link(g_file_load_contents_async, "g_file_load_contents_async", LIBRARY_GIO);
868 	Linker.link(g_file_load_contents_finish, "g_file_load_contents_finish", LIBRARY_GIO);
869 	Linker.link(g_file_load_partial_contents_async, "g_file_load_partial_contents_async", LIBRARY_GIO);
870 	Linker.link(g_file_load_partial_contents_finish, "g_file_load_partial_contents_finish", LIBRARY_GIO);
871 	Linker.link(g_file_make_directory, "g_file_make_directory", LIBRARY_GIO);
872 	Linker.link(g_file_make_directory_async, "g_file_make_directory_async", LIBRARY_GIO);
873 	Linker.link(g_file_make_directory_finish, "g_file_make_directory_finish", LIBRARY_GIO);
874 	Linker.link(g_file_make_directory_with_parents, "g_file_make_directory_with_parents", LIBRARY_GIO);
875 	Linker.link(g_file_make_symbolic_link, "g_file_make_symbolic_link", LIBRARY_GIO);
876 	Linker.link(g_file_measure_disk_usage, "g_file_measure_disk_usage", LIBRARY_GIO);
877 	Linker.link(g_file_measure_disk_usage_async, "g_file_measure_disk_usage_async", LIBRARY_GIO);
878 	Linker.link(g_file_measure_disk_usage_finish, "g_file_measure_disk_usage_finish", LIBRARY_GIO);
879 	Linker.link(g_file_monitor, "g_file_monitor", LIBRARY_GIO);
880 	Linker.link(g_file_monitor_directory, "g_file_monitor_directory", LIBRARY_GIO);
881 	Linker.link(g_file_monitor_file, "g_file_monitor_file", LIBRARY_GIO);
882 	Linker.link(g_file_mount_enclosing_volume, "g_file_mount_enclosing_volume", LIBRARY_GIO);
883 	Linker.link(g_file_mount_enclosing_volume_finish, "g_file_mount_enclosing_volume_finish", LIBRARY_GIO);
884 	Linker.link(g_file_mount_mountable, "g_file_mount_mountable", LIBRARY_GIO);
885 	Linker.link(g_file_mount_mountable_finish, "g_file_mount_mountable_finish", LIBRARY_GIO);
886 	Linker.link(g_file_move, "g_file_move", LIBRARY_GIO);
887 	Linker.link(g_file_move_async, "g_file_move_async", LIBRARY_GIO);
888 	Linker.link(g_file_move_finish, "g_file_move_finish", LIBRARY_GIO);
889 	Linker.link(g_file_open_readwrite, "g_file_open_readwrite", LIBRARY_GIO);
890 	Linker.link(g_file_open_readwrite_async, "g_file_open_readwrite_async", LIBRARY_GIO);
891 	Linker.link(g_file_open_readwrite_finish, "g_file_open_readwrite_finish", LIBRARY_GIO);
892 	Linker.link(g_file_peek_path, "g_file_peek_path", LIBRARY_GIO);
893 	Linker.link(g_file_poll_mountable, "g_file_poll_mountable", LIBRARY_GIO);
894 	Linker.link(g_file_poll_mountable_finish, "g_file_poll_mountable_finish", LIBRARY_GIO);
895 	Linker.link(g_file_query_default_handler, "g_file_query_default_handler", LIBRARY_GIO);
896 	Linker.link(g_file_query_default_handler_async, "g_file_query_default_handler_async", LIBRARY_GIO);
897 	Linker.link(g_file_query_default_handler_finish, "g_file_query_default_handler_finish", LIBRARY_GIO);
898 	Linker.link(g_file_query_exists, "g_file_query_exists", LIBRARY_GIO);
899 	Linker.link(g_file_query_file_type, "g_file_query_file_type", LIBRARY_GIO);
900 	Linker.link(g_file_query_filesystem_info, "g_file_query_filesystem_info", LIBRARY_GIO);
901 	Linker.link(g_file_query_filesystem_info_async, "g_file_query_filesystem_info_async", LIBRARY_GIO);
902 	Linker.link(g_file_query_filesystem_info_finish, "g_file_query_filesystem_info_finish", LIBRARY_GIO);
903 	Linker.link(g_file_query_info, "g_file_query_info", LIBRARY_GIO);
904 	Linker.link(g_file_query_info_async, "g_file_query_info_async", LIBRARY_GIO);
905 	Linker.link(g_file_query_info_finish, "g_file_query_info_finish", LIBRARY_GIO);
906 	Linker.link(g_file_query_settable_attributes, "g_file_query_settable_attributes", LIBRARY_GIO);
907 	Linker.link(g_file_query_writable_namespaces, "g_file_query_writable_namespaces", LIBRARY_GIO);
908 	Linker.link(g_file_read, "g_file_read", LIBRARY_GIO);
909 	Linker.link(g_file_read_async, "g_file_read_async", LIBRARY_GIO);
910 	Linker.link(g_file_read_finish, "g_file_read_finish", LIBRARY_GIO);
911 	Linker.link(g_file_replace, "g_file_replace", LIBRARY_GIO);
912 	Linker.link(g_file_replace_async, "g_file_replace_async", LIBRARY_GIO);
913 	Linker.link(g_file_replace_contents, "g_file_replace_contents", LIBRARY_GIO);
914 	Linker.link(g_file_replace_contents_async, "g_file_replace_contents_async", LIBRARY_GIO);
915 	Linker.link(g_file_replace_contents_bytes_async, "g_file_replace_contents_bytes_async", LIBRARY_GIO);
916 	Linker.link(g_file_replace_contents_finish, "g_file_replace_contents_finish", LIBRARY_GIO);
917 	Linker.link(g_file_replace_finish, "g_file_replace_finish", LIBRARY_GIO);
918 	Linker.link(g_file_replace_readwrite, "g_file_replace_readwrite", LIBRARY_GIO);
919 	Linker.link(g_file_replace_readwrite_async, "g_file_replace_readwrite_async", LIBRARY_GIO);
920 	Linker.link(g_file_replace_readwrite_finish, "g_file_replace_readwrite_finish", LIBRARY_GIO);
921 	Linker.link(g_file_resolve_relative_path, "g_file_resolve_relative_path", LIBRARY_GIO);
922 	Linker.link(g_file_set_attribute, "g_file_set_attribute", LIBRARY_GIO);
923 	Linker.link(g_file_set_attribute_byte_string, "g_file_set_attribute_byte_string", LIBRARY_GIO);
924 	Linker.link(g_file_set_attribute_int32, "g_file_set_attribute_int32", LIBRARY_GIO);
925 	Linker.link(g_file_set_attribute_int64, "g_file_set_attribute_int64", LIBRARY_GIO);
926 	Linker.link(g_file_set_attribute_string, "g_file_set_attribute_string", LIBRARY_GIO);
927 	Linker.link(g_file_set_attribute_uint32, "g_file_set_attribute_uint32", LIBRARY_GIO);
928 	Linker.link(g_file_set_attribute_uint64, "g_file_set_attribute_uint64", LIBRARY_GIO);
929 	Linker.link(g_file_set_attributes_async, "g_file_set_attributes_async", LIBRARY_GIO);
930 	Linker.link(g_file_set_attributes_finish, "g_file_set_attributes_finish", LIBRARY_GIO);
931 	Linker.link(g_file_set_attributes_from_info, "g_file_set_attributes_from_info", LIBRARY_GIO);
932 	Linker.link(g_file_set_display_name, "g_file_set_display_name", LIBRARY_GIO);
933 	Linker.link(g_file_set_display_name_async, "g_file_set_display_name_async", LIBRARY_GIO);
934 	Linker.link(g_file_set_display_name_finish, "g_file_set_display_name_finish", LIBRARY_GIO);
935 	Linker.link(g_file_start_mountable, "g_file_start_mountable", LIBRARY_GIO);
936 	Linker.link(g_file_start_mountable_finish, "g_file_start_mountable_finish", LIBRARY_GIO);
937 	Linker.link(g_file_stop_mountable, "g_file_stop_mountable", LIBRARY_GIO);
938 	Linker.link(g_file_stop_mountable_finish, "g_file_stop_mountable_finish", LIBRARY_GIO);
939 	Linker.link(g_file_supports_thread_contexts, "g_file_supports_thread_contexts", LIBRARY_GIO);
940 	Linker.link(g_file_trash, "g_file_trash", LIBRARY_GIO);
941 	Linker.link(g_file_trash_async, "g_file_trash_async", LIBRARY_GIO);
942 	Linker.link(g_file_trash_finish, "g_file_trash_finish", LIBRARY_GIO);
943 	Linker.link(g_file_unmount_mountable, "g_file_unmount_mountable", LIBRARY_GIO);
944 	Linker.link(g_file_unmount_mountable_finish, "g_file_unmount_mountable_finish", LIBRARY_GIO);
945 	Linker.link(g_file_unmount_mountable_with_operation, "g_file_unmount_mountable_with_operation", LIBRARY_GIO);
946 	Linker.link(g_file_unmount_mountable_with_operation_finish, "g_file_unmount_mountable_with_operation_finish", LIBRARY_GIO);
947 
948 	// gio.FileAttributeInfoList
949 
950 	Linker.link(g_file_attribute_info_list_get_type, "g_file_attribute_info_list_get_type", LIBRARY_GIO);
951 	Linker.link(g_file_attribute_info_list_new, "g_file_attribute_info_list_new", LIBRARY_GIO);
952 	Linker.link(g_file_attribute_info_list_add, "g_file_attribute_info_list_add", LIBRARY_GIO);
953 	Linker.link(g_file_attribute_info_list_dup, "g_file_attribute_info_list_dup", LIBRARY_GIO);
954 	Linker.link(g_file_attribute_info_list_lookup, "g_file_attribute_info_list_lookup", LIBRARY_GIO);
955 	Linker.link(g_file_attribute_info_list_ref, "g_file_attribute_info_list_ref", LIBRARY_GIO);
956 	Linker.link(g_file_attribute_info_list_unref, "g_file_attribute_info_list_unref", LIBRARY_GIO);
957 
958 	// gio.FileAttributeMatcher
959 
960 	Linker.link(g_file_attribute_matcher_get_type, "g_file_attribute_matcher_get_type", LIBRARY_GIO);
961 	Linker.link(g_file_attribute_matcher_new, "g_file_attribute_matcher_new", LIBRARY_GIO);
962 	Linker.link(g_file_attribute_matcher_enumerate_namespace, "g_file_attribute_matcher_enumerate_namespace", LIBRARY_GIO);
963 	Linker.link(g_file_attribute_matcher_enumerate_next, "g_file_attribute_matcher_enumerate_next", LIBRARY_GIO);
964 	Linker.link(g_file_attribute_matcher_matches, "g_file_attribute_matcher_matches", LIBRARY_GIO);
965 	Linker.link(g_file_attribute_matcher_matches_only, "g_file_attribute_matcher_matches_only", LIBRARY_GIO);
966 	Linker.link(g_file_attribute_matcher_ref, "g_file_attribute_matcher_ref", LIBRARY_GIO);
967 	Linker.link(g_file_attribute_matcher_subtract, "g_file_attribute_matcher_subtract", LIBRARY_GIO);
968 	Linker.link(g_file_attribute_matcher_to_string, "g_file_attribute_matcher_to_string", LIBRARY_GIO);
969 	Linker.link(g_file_attribute_matcher_unref, "g_file_attribute_matcher_unref", LIBRARY_GIO);
970 
971 	// gio.FileDescriptorBased
972 
973 	Linker.link(g_file_descriptor_based_get_type, "g_file_descriptor_based_get_type", LIBRARY_GIO);
974 	Linker.link(g_file_descriptor_based_get_fd, "g_file_descriptor_based_get_fd", LIBRARY_GIO);
975 
976 	// gio.FileEnumerator
977 
978 	Linker.link(g_file_enumerator_get_type, "g_file_enumerator_get_type", LIBRARY_GIO);
979 	Linker.link(g_file_enumerator_close, "g_file_enumerator_close", LIBRARY_GIO);
980 	Linker.link(g_file_enumerator_close_async, "g_file_enumerator_close_async", LIBRARY_GIO);
981 	Linker.link(g_file_enumerator_close_finish, "g_file_enumerator_close_finish", LIBRARY_GIO);
982 	Linker.link(g_file_enumerator_get_child, "g_file_enumerator_get_child", LIBRARY_GIO);
983 	Linker.link(g_file_enumerator_get_container, "g_file_enumerator_get_container", LIBRARY_GIO);
984 	Linker.link(g_file_enumerator_has_pending, "g_file_enumerator_has_pending", LIBRARY_GIO);
985 	Linker.link(g_file_enumerator_is_closed, "g_file_enumerator_is_closed", LIBRARY_GIO);
986 	Linker.link(g_file_enumerator_iterate, "g_file_enumerator_iterate", LIBRARY_GIO);
987 	Linker.link(g_file_enumerator_next_file, "g_file_enumerator_next_file", LIBRARY_GIO);
988 	Linker.link(g_file_enumerator_next_files_async, "g_file_enumerator_next_files_async", LIBRARY_GIO);
989 	Linker.link(g_file_enumerator_next_files_finish, "g_file_enumerator_next_files_finish", LIBRARY_GIO);
990 	Linker.link(g_file_enumerator_set_pending, "g_file_enumerator_set_pending", LIBRARY_GIO);
991 
992 	// gio.FileIOStream
993 
994 	Linker.link(g_file_io_stream_get_type, "g_file_io_stream_get_type", LIBRARY_GIO);
995 	Linker.link(g_file_io_stream_get_etag, "g_file_io_stream_get_etag", LIBRARY_GIO);
996 	Linker.link(g_file_io_stream_query_info, "g_file_io_stream_query_info", LIBRARY_GIO);
997 	Linker.link(g_file_io_stream_query_info_async, "g_file_io_stream_query_info_async", LIBRARY_GIO);
998 	Linker.link(g_file_io_stream_query_info_finish, "g_file_io_stream_query_info_finish", LIBRARY_GIO);
999 
1000 	// gio.FileIcon
1001 
1002 	Linker.link(g_file_icon_get_type, "g_file_icon_get_type", LIBRARY_GIO);
1003 	Linker.link(g_file_icon_new, "g_file_icon_new", LIBRARY_GIO);
1004 	Linker.link(g_file_icon_get_file, "g_file_icon_get_file", LIBRARY_GIO);
1005 
1006 	// gio.FileInfo
1007 
1008 	Linker.link(g_file_info_get_type, "g_file_info_get_type", LIBRARY_GIO);
1009 	Linker.link(g_file_info_new, "g_file_info_new", LIBRARY_GIO);
1010 	Linker.link(g_file_info_clear_status, "g_file_info_clear_status", LIBRARY_GIO);
1011 	Linker.link(g_file_info_copy_into, "g_file_info_copy_into", LIBRARY_GIO);
1012 	Linker.link(g_file_info_dup, "g_file_info_dup", LIBRARY_GIO);
1013 	Linker.link(g_file_info_get_access_date_time, "g_file_info_get_access_date_time", LIBRARY_GIO);
1014 	Linker.link(g_file_info_get_attribute_as_string, "g_file_info_get_attribute_as_string", LIBRARY_GIO);
1015 	Linker.link(g_file_info_get_attribute_boolean, "g_file_info_get_attribute_boolean", LIBRARY_GIO);
1016 	Linker.link(g_file_info_get_attribute_byte_string, "g_file_info_get_attribute_byte_string", LIBRARY_GIO);
1017 	Linker.link(g_file_info_get_attribute_data, "g_file_info_get_attribute_data", LIBRARY_GIO);
1018 	Linker.link(g_file_info_get_attribute_int32, "g_file_info_get_attribute_int32", LIBRARY_GIO);
1019 	Linker.link(g_file_info_get_attribute_int64, "g_file_info_get_attribute_int64", LIBRARY_GIO);
1020 	Linker.link(g_file_info_get_attribute_object, "g_file_info_get_attribute_object", LIBRARY_GIO);
1021 	Linker.link(g_file_info_get_attribute_status, "g_file_info_get_attribute_status", LIBRARY_GIO);
1022 	Linker.link(g_file_info_get_attribute_string, "g_file_info_get_attribute_string", LIBRARY_GIO);
1023 	Linker.link(g_file_info_get_attribute_stringv, "g_file_info_get_attribute_stringv", LIBRARY_GIO);
1024 	Linker.link(g_file_info_get_attribute_type, "g_file_info_get_attribute_type", LIBRARY_GIO);
1025 	Linker.link(g_file_info_get_attribute_uint32, "g_file_info_get_attribute_uint32", LIBRARY_GIO);
1026 	Linker.link(g_file_info_get_attribute_uint64, "g_file_info_get_attribute_uint64", LIBRARY_GIO);
1027 	Linker.link(g_file_info_get_content_type, "g_file_info_get_content_type", LIBRARY_GIO);
1028 	Linker.link(g_file_info_get_creation_date_time, "g_file_info_get_creation_date_time", LIBRARY_GIO);
1029 	Linker.link(g_file_info_get_deletion_date, "g_file_info_get_deletion_date", LIBRARY_GIO);
1030 	Linker.link(g_file_info_get_display_name, "g_file_info_get_display_name", LIBRARY_GIO);
1031 	Linker.link(g_file_info_get_edit_name, "g_file_info_get_edit_name", LIBRARY_GIO);
1032 	Linker.link(g_file_info_get_etag, "g_file_info_get_etag", LIBRARY_GIO);
1033 	Linker.link(g_file_info_get_file_type, "g_file_info_get_file_type", LIBRARY_GIO);
1034 	Linker.link(g_file_info_get_icon, "g_file_info_get_icon", LIBRARY_GIO);
1035 	Linker.link(g_file_info_get_is_backup, "g_file_info_get_is_backup", LIBRARY_GIO);
1036 	Linker.link(g_file_info_get_is_hidden, "g_file_info_get_is_hidden", LIBRARY_GIO);
1037 	Linker.link(g_file_info_get_is_symlink, "g_file_info_get_is_symlink", LIBRARY_GIO);
1038 	Linker.link(g_file_info_get_modification_date_time, "g_file_info_get_modification_date_time", LIBRARY_GIO);
1039 	Linker.link(g_file_info_get_modification_time, "g_file_info_get_modification_time", LIBRARY_GIO);
1040 	Linker.link(g_file_info_get_name, "g_file_info_get_name", LIBRARY_GIO);
1041 	Linker.link(g_file_info_get_size, "g_file_info_get_size", LIBRARY_GIO);
1042 	Linker.link(g_file_info_get_sort_order, "g_file_info_get_sort_order", LIBRARY_GIO);
1043 	Linker.link(g_file_info_get_symbolic_icon, "g_file_info_get_symbolic_icon", LIBRARY_GIO);
1044 	Linker.link(g_file_info_get_symlink_target, "g_file_info_get_symlink_target", LIBRARY_GIO);
1045 	Linker.link(g_file_info_has_attribute, "g_file_info_has_attribute", LIBRARY_GIO);
1046 	Linker.link(g_file_info_has_namespace, "g_file_info_has_namespace", LIBRARY_GIO);
1047 	Linker.link(g_file_info_list_attributes, "g_file_info_list_attributes", LIBRARY_GIO);
1048 	Linker.link(g_file_info_remove_attribute, "g_file_info_remove_attribute", LIBRARY_GIO);
1049 	Linker.link(g_file_info_set_access_date_time, "g_file_info_set_access_date_time", LIBRARY_GIO);
1050 	Linker.link(g_file_info_set_attribute, "g_file_info_set_attribute", LIBRARY_GIO);
1051 	Linker.link(g_file_info_set_attribute_boolean, "g_file_info_set_attribute_boolean", LIBRARY_GIO);
1052 	Linker.link(g_file_info_set_attribute_byte_string, "g_file_info_set_attribute_byte_string", LIBRARY_GIO);
1053 	Linker.link(g_file_info_set_attribute_int32, "g_file_info_set_attribute_int32", LIBRARY_GIO);
1054 	Linker.link(g_file_info_set_attribute_int64, "g_file_info_set_attribute_int64", LIBRARY_GIO);
1055 	Linker.link(g_file_info_set_attribute_mask, "g_file_info_set_attribute_mask", LIBRARY_GIO);
1056 	Linker.link(g_file_info_set_attribute_object, "g_file_info_set_attribute_object", LIBRARY_GIO);
1057 	Linker.link(g_file_info_set_attribute_status, "g_file_info_set_attribute_status", LIBRARY_GIO);
1058 	Linker.link(g_file_info_set_attribute_string, "g_file_info_set_attribute_string", LIBRARY_GIO);
1059 	Linker.link(g_file_info_set_attribute_stringv, "g_file_info_set_attribute_stringv", LIBRARY_GIO);
1060 	Linker.link(g_file_info_set_attribute_uint32, "g_file_info_set_attribute_uint32", LIBRARY_GIO);
1061 	Linker.link(g_file_info_set_attribute_uint64, "g_file_info_set_attribute_uint64", LIBRARY_GIO);
1062 	Linker.link(g_file_info_set_content_type, "g_file_info_set_content_type", LIBRARY_GIO);
1063 	Linker.link(g_file_info_set_creation_date_time, "g_file_info_set_creation_date_time", LIBRARY_GIO);
1064 	Linker.link(g_file_info_set_display_name, "g_file_info_set_display_name", LIBRARY_GIO);
1065 	Linker.link(g_file_info_set_edit_name, "g_file_info_set_edit_name", LIBRARY_GIO);
1066 	Linker.link(g_file_info_set_file_type, "g_file_info_set_file_type", LIBRARY_GIO);
1067 	Linker.link(g_file_info_set_icon, "g_file_info_set_icon", LIBRARY_GIO);
1068 	Linker.link(g_file_info_set_is_hidden, "g_file_info_set_is_hidden", LIBRARY_GIO);
1069 	Linker.link(g_file_info_set_is_symlink, "g_file_info_set_is_symlink", LIBRARY_GIO);
1070 	Linker.link(g_file_info_set_modification_date_time, "g_file_info_set_modification_date_time", LIBRARY_GIO);
1071 	Linker.link(g_file_info_set_modification_time, "g_file_info_set_modification_time", LIBRARY_GIO);
1072 	Linker.link(g_file_info_set_name, "g_file_info_set_name", LIBRARY_GIO);
1073 	Linker.link(g_file_info_set_size, "g_file_info_set_size", LIBRARY_GIO);
1074 	Linker.link(g_file_info_set_sort_order, "g_file_info_set_sort_order", LIBRARY_GIO);
1075 	Linker.link(g_file_info_set_symbolic_icon, "g_file_info_set_symbolic_icon", LIBRARY_GIO);
1076 	Linker.link(g_file_info_set_symlink_target, "g_file_info_set_symlink_target", LIBRARY_GIO);
1077 	Linker.link(g_file_info_unset_attribute_mask, "g_file_info_unset_attribute_mask", LIBRARY_GIO);
1078 
1079 	// gio.FileInputStream
1080 
1081 	Linker.link(g_file_input_stream_get_type, "g_file_input_stream_get_type", LIBRARY_GIO);
1082 	Linker.link(g_file_input_stream_query_info, "g_file_input_stream_query_info", LIBRARY_GIO);
1083 	Linker.link(g_file_input_stream_query_info_async, "g_file_input_stream_query_info_async", LIBRARY_GIO);
1084 	Linker.link(g_file_input_stream_query_info_finish, "g_file_input_stream_query_info_finish", LIBRARY_GIO);
1085 
1086 	// gio.FileMonitor
1087 
1088 	Linker.link(g_file_monitor_get_type, "g_file_monitor_get_type", LIBRARY_GIO);
1089 	Linker.link(g_file_monitor_cancel, "g_file_monitor_cancel", LIBRARY_GIO);
1090 	Linker.link(g_file_monitor_emit_event, "g_file_monitor_emit_event", LIBRARY_GIO);
1091 	Linker.link(g_file_monitor_is_cancelled, "g_file_monitor_is_cancelled", LIBRARY_GIO);
1092 	Linker.link(g_file_monitor_set_rate_limit, "g_file_monitor_set_rate_limit", LIBRARY_GIO);
1093 
1094 	// gio.FileOutputStream
1095 
1096 	Linker.link(g_file_output_stream_get_type, "g_file_output_stream_get_type", LIBRARY_GIO);
1097 	Linker.link(g_file_output_stream_get_etag, "g_file_output_stream_get_etag", LIBRARY_GIO);
1098 	Linker.link(g_file_output_stream_query_info, "g_file_output_stream_query_info", LIBRARY_GIO);
1099 	Linker.link(g_file_output_stream_query_info_async, "g_file_output_stream_query_info_async", LIBRARY_GIO);
1100 	Linker.link(g_file_output_stream_query_info_finish, "g_file_output_stream_query_info_finish", LIBRARY_GIO);
1101 
1102 	// gio.FilenameCompleter
1103 
1104 	Linker.link(g_filename_completer_get_type, "g_filename_completer_get_type", LIBRARY_GIO);
1105 	Linker.link(g_filename_completer_new, "g_filename_completer_new", LIBRARY_GIO);
1106 	Linker.link(g_filename_completer_get_completion_suffix, "g_filename_completer_get_completion_suffix", LIBRARY_GIO);
1107 	Linker.link(g_filename_completer_get_completions, "g_filename_completer_get_completions", LIBRARY_GIO);
1108 	Linker.link(g_filename_completer_set_dirs_only, "g_filename_completer_set_dirs_only", LIBRARY_GIO);
1109 
1110 	// gio.FilterInputStream
1111 
1112 	Linker.link(g_filter_input_stream_get_type, "g_filter_input_stream_get_type", LIBRARY_GIO);
1113 	Linker.link(g_filter_input_stream_get_base_stream, "g_filter_input_stream_get_base_stream", LIBRARY_GIO);
1114 	Linker.link(g_filter_input_stream_get_close_base_stream, "g_filter_input_stream_get_close_base_stream", LIBRARY_GIO);
1115 	Linker.link(g_filter_input_stream_set_close_base_stream, "g_filter_input_stream_set_close_base_stream", LIBRARY_GIO);
1116 
1117 	// gio.FilterOutputStream
1118 
1119 	Linker.link(g_filter_output_stream_get_type, "g_filter_output_stream_get_type", LIBRARY_GIO);
1120 	Linker.link(g_filter_output_stream_get_base_stream, "g_filter_output_stream_get_base_stream", LIBRARY_GIO);
1121 	Linker.link(g_filter_output_stream_get_close_base_stream, "g_filter_output_stream_get_close_base_stream", LIBRARY_GIO);
1122 	Linker.link(g_filter_output_stream_set_close_base_stream, "g_filter_output_stream_set_close_base_stream", LIBRARY_GIO);
1123 
1124 	// gio.IOExtension
1125 
1126 	Linker.link(g_io_extension_get_name, "g_io_extension_get_name", LIBRARY_GIO);
1127 	Linker.link(g_io_extension_get_priority, "g_io_extension_get_priority", LIBRARY_GIO);
1128 	Linker.link(g_io_extension_get_type, "g_io_extension_get_type", LIBRARY_GIO);
1129 	Linker.link(g_io_extension_ref_class, "g_io_extension_ref_class", LIBRARY_GIO);
1130 
1131 	// gio.IOExtensionPoint
1132 
1133 	Linker.link(g_io_extension_point_get_extension_by_name, "g_io_extension_point_get_extension_by_name", LIBRARY_GIO);
1134 	Linker.link(g_io_extension_point_get_extensions, "g_io_extension_point_get_extensions", LIBRARY_GIO);
1135 	Linker.link(g_io_extension_point_get_required_type, "g_io_extension_point_get_required_type", LIBRARY_GIO);
1136 	Linker.link(g_io_extension_point_set_required_type, "g_io_extension_point_set_required_type", LIBRARY_GIO);
1137 	Linker.link(g_io_extension_point_implement, "g_io_extension_point_implement", LIBRARY_GIO);
1138 	Linker.link(g_io_extension_point_lookup, "g_io_extension_point_lookup", LIBRARY_GIO);
1139 	Linker.link(g_io_extension_point_register, "g_io_extension_point_register", LIBRARY_GIO);
1140 
1141 	// gio.IOModule
1142 
1143 	Linker.link(g_io_module_get_type, "g_io_module_get_type", LIBRARY_GIO);
1144 	Linker.link(g_io_module_new, "g_io_module_new", LIBRARY_GIO);
1145 	Linker.link(g_io_modules_load_all_in_directory, "g_io_modules_load_all_in_directory", LIBRARY_GIO);
1146 	Linker.link(g_io_modules_load_all_in_directory_with_scope, "g_io_modules_load_all_in_directory_with_scope", LIBRARY_GIO);
1147 	Linker.link(g_io_modules_scan_all_in_directory, "g_io_modules_scan_all_in_directory", LIBRARY_GIO);
1148 	Linker.link(g_io_modules_scan_all_in_directory_with_scope, "g_io_modules_scan_all_in_directory_with_scope", LIBRARY_GIO);
1149 
1150 	// gio.IOModuleScope
1151 
1152 	Linker.link(g_io_module_scope_block, "g_io_module_scope_block", LIBRARY_GIO);
1153 	Linker.link(g_io_module_scope_free, "g_io_module_scope_free", LIBRARY_GIO);
1154 	Linker.link(g_io_module_scope_new, "g_io_module_scope_new", LIBRARY_GIO);
1155 
1156 	// gio.IOSchedulerJob
1157 
1158 	Linker.link(g_io_scheduler_job_send_to_mainloop, "g_io_scheduler_job_send_to_mainloop", LIBRARY_GIO);
1159 	Linker.link(g_io_scheduler_job_send_to_mainloop_async, "g_io_scheduler_job_send_to_mainloop_async", LIBRARY_GIO);
1160 	Linker.link(g_io_scheduler_cancel_all_jobs, "g_io_scheduler_cancel_all_jobs", LIBRARY_GIO);
1161 	Linker.link(g_io_scheduler_push_job, "g_io_scheduler_push_job", LIBRARY_GIO);
1162 
1163 	// gio.IOStream
1164 
1165 	Linker.link(g_io_stream_get_type, "g_io_stream_get_type", LIBRARY_GIO);
1166 	Linker.link(g_io_stream_splice_finish, "g_io_stream_splice_finish", LIBRARY_GIO);
1167 	Linker.link(g_io_stream_clear_pending, "g_io_stream_clear_pending", LIBRARY_GIO);
1168 	Linker.link(g_io_stream_close, "g_io_stream_close", LIBRARY_GIO);
1169 	Linker.link(g_io_stream_close_async, "g_io_stream_close_async", LIBRARY_GIO);
1170 	Linker.link(g_io_stream_close_finish, "g_io_stream_close_finish", LIBRARY_GIO);
1171 	Linker.link(g_io_stream_get_input_stream, "g_io_stream_get_input_stream", LIBRARY_GIO);
1172 	Linker.link(g_io_stream_get_output_stream, "g_io_stream_get_output_stream", LIBRARY_GIO);
1173 	Linker.link(g_io_stream_has_pending, "g_io_stream_has_pending", LIBRARY_GIO);
1174 	Linker.link(g_io_stream_is_closed, "g_io_stream_is_closed", LIBRARY_GIO);
1175 	Linker.link(g_io_stream_set_pending, "g_io_stream_set_pending", LIBRARY_GIO);
1176 	Linker.link(g_io_stream_splice_async, "g_io_stream_splice_async", LIBRARY_GIO);
1177 
1178 	// gio.Icon
1179 
1180 	Linker.link(g_icon_get_type, "g_icon_get_type", LIBRARY_GIO);
1181 	Linker.link(g_icon_deserialize, "g_icon_deserialize", LIBRARY_GIO);
1182 	Linker.link(g_icon_hash, "g_icon_hash", LIBRARY_GIO);
1183 	Linker.link(g_icon_new_for_string, "g_icon_new_for_string", LIBRARY_GIO);
1184 	Linker.link(g_icon_equal, "g_icon_equal", LIBRARY_GIO);
1185 	Linker.link(g_icon_serialize, "g_icon_serialize", LIBRARY_GIO);
1186 	Linker.link(g_icon_to_string, "g_icon_to_string", LIBRARY_GIO);
1187 
1188 	// gio.InetAddress
1189 
1190 	Linker.link(g_inet_address_get_type, "g_inet_address_get_type", LIBRARY_GIO);
1191 	Linker.link(g_inet_address_new_any, "g_inet_address_new_any", LIBRARY_GIO);
1192 	Linker.link(g_inet_address_new_from_bytes, "g_inet_address_new_from_bytes", LIBRARY_GIO);
1193 	Linker.link(g_inet_address_new_from_string, "g_inet_address_new_from_string", LIBRARY_GIO);
1194 	Linker.link(g_inet_address_new_loopback, "g_inet_address_new_loopback", LIBRARY_GIO);
1195 	Linker.link(g_inet_address_equal, "g_inet_address_equal", LIBRARY_GIO);
1196 	Linker.link(g_inet_address_get_family, "g_inet_address_get_family", LIBRARY_GIO);
1197 	Linker.link(g_inet_address_get_is_any, "g_inet_address_get_is_any", LIBRARY_GIO);
1198 	Linker.link(g_inet_address_get_is_link_local, "g_inet_address_get_is_link_local", LIBRARY_GIO);
1199 	Linker.link(g_inet_address_get_is_loopback, "g_inet_address_get_is_loopback", LIBRARY_GIO);
1200 	Linker.link(g_inet_address_get_is_mc_global, "g_inet_address_get_is_mc_global", LIBRARY_GIO);
1201 	Linker.link(g_inet_address_get_is_mc_link_local, "g_inet_address_get_is_mc_link_local", LIBRARY_GIO);
1202 	Linker.link(g_inet_address_get_is_mc_node_local, "g_inet_address_get_is_mc_node_local", LIBRARY_GIO);
1203 	Linker.link(g_inet_address_get_is_mc_org_local, "g_inet_address_get_is_mc_org_local", LIBRARY_GIO);
1204 	Linker.link(g_inet_address_get_is_mc_site_local, "g_inet_address_get_is_mc_site_local", LIBRARY_GIO);
1205 	Linker.link(g_inet_address_get_is_multicast, "g_inet_address_get_is_multicast", LIBRARY_GIO);
1206 	Linker.link(g_inet_address_get_is_site_local, "g_inet_address_get_is_site_local", LIBRARY_GIO);
1207 	Linker.link(g_inet_address_get_native_size, "g_inet_address_get_native_size", LIBRARY_GIO);
1208 	Linker.link(g_inet_address_to_bytes, "g_inet_address_to_bytes", LIBRARY_GIO);
1209 	Linker.link(g_inet_address_to_string, "g_inet_address_to_string", LIBRARY_GIO);
1210 
1211 	// gio.InetAddressMask
1212 
1213 	Linker.link(g_inet_address_mask_get_type, "g_inet_address_mask_get_type", LIBRARY_GIO);
1214 	Linker.link(g_inet_address_mask_new, "g_inet_address_mask_new", LIBRARY_GIO);
1215 	Linker.link(g_inet_address_mask_new_from_string, "g_inet_address_mask_new_from_string", LIBRARY_GIO);
1216 	Linker.link(g_inet_address_mask_equal, "g_inet_address_mask_equal", LIBRARY_GIO);
1217 	Linker.link(g_inet_address_mask_get_address, "g_inet_address_mask_get_address", LIBRARY_GIO);
1218 	Linker.link(g_inet_address_mask_get_family, "g_inet_address_mask_get_family", LIBRARY_GIO);
1219 	Linker.link(g_inet_address_mask_get_length, "g_inet_address_mask_get_length", LIBRARY_GIO);
1220 	Linker.link(g_inet_address_mask_matches, "g_inet_address_mask_matches", LIBRARY_GIO);
1221 	Linker.link(g_inet_address_mask_to_string, "g_inet_address_mask_to_string", LIBRARY_GIO);
1222 
1223 	// gio.InetSocketAddress
1224 
1225 	Linker.link(g_inet_socket_address_get_type, "g_inet_socket_address_get_type", LIBRARY_GIO);
1226 	Linker.link(g_inet_socket_address_new, "g_inet_socket_address_new", LIBRARY_GIO);
1227 	Linker.link(g_inet_socket_address_new_from_string, "g_inet_socket_address_new_from_string", LIBRARY_GIO);
1228 	Linker.link(g_inet_socket_address_get_address, "g_inet_socket_address_get_address", LIBRARY_GIO);
1229 	Linker.link(g_inet_socket_address_get_flowinfo, "g_inet_socket_address_get_flowinfo", LIBRARY_GIO);
1230 	Linker.link(g_inet_socket_address_get_port, "g_inet_socket_address_get_port", LIBRARY_GIO);
1231 	Linker.link(g_inet_socket_address_get_scope_id, "g_inet_socket_address_get_scope_id", LIBRARY_GIO);
1232 
1233 	// gio.Initable
1234 
1235 	Linker.link(g_initable_get_type, "g_initable_get_type", LIBRARY_GIO);
1236 	Linker.link(g_initable_new, "g_initable_new", LIBRARY_GIO);
1237 	Linker.link(g_initable_new_valist, "g_initable_new_valist", LIBRARY_GIO);
1238 	Linker.link(g_initable_newv, "g_initable_newv", LIBRARY_GIO);
1239 	Linker.link(g_initable_init, "g_initable_init", LIBRARY_GIO);
1240 
1241 	// gio.InputStream
1242 
1243 	Linker.link(g_input_stream_get_type, "g_input_stream_get_type", LIBRARY_GIO);
1244 	Linker.link(g_input_stream_clear_pending, "g_input_stream_clear_pending", LIBRARY_GIO);
1245 	Linker.link(g_input_stream_close, "g_input_stream_close", LIBRARY_GIO);
1246 	Linker.link(g_input_stream_close_async, "g_input_stream_close_async", LIBRARY_GIO);
1247 	Linker.link(g_input_stream_close_finish, "g_input_stream_close_finish", LIBRARY_GIO);
1248 	Linker.link(g_input_stream_has_pending, "g_input_stream_has_pending", LIBRARY_GIO);
1249 	Linker.link(g_input_stream_is_closed, "g_input_stream_is_closed", LIBRARY_GIO);
1250 	Linker.link(g_input_stream_read, "g_input_stream_read", LIBRARY_GIO);
1251 	Linker.link(g_input_stream_read_all, "g_input_stream_read_all", LIBRARY_GIO);
1252 	Linker.link(g_input_stream_read_all_async, "g_input_stream_read_all_async", LIBRARY_GIO);
1253 	Linker.link(g_input_stream_read_all_finish, "g_input_stream_read_all_finish", LIBRARY_GIO);
1254 	Linker.link(g_input_stream_read_async, "g_input_stream_read_async", LIBRARY_GIO);
1255 	Linker.link(g_input_stream_read_bytes, "g_input_stream_read_bytes", LIBRARY_GIO);
1256 	Linker.link(g_input_stream_read_bytes_async, "g_input_stream_read_bytes_async", LIBRARY_GIO);
1257 	Linker.link(g_input_stream_read_bytes_finish, "g_input_stream_read_bytes_finish", LIBRARY_GIO);
1258 	Linker.link(g_input_stream_read_finish, "g_input_stream_read_finish", LIBRARY_GIO);
1259 	Linker.link(g_input_stream_set_pending, "g_input_stream_set_pending", LIBRARY_GIO);
1260 	Linker.link(g_input_stream_skip, "g_input_stream_skip", LIBRARY_GIO);
1261 	Linker.link(g_input_stream_skip_async, "g_input_stream_skip_async", LIBRARY_GIO);
1262 	Linker.link(g_input_stream_skip_finish, "g_input_stream_skip_finish", LIBRARY_GIO);
1263 
1264 	// gio.ListModel
1265 
1266 	Linker.link(g_list_model_get_type, "g_list_model_get_type", LIBRARY_GIO);
1267 	Linker.link(g_list_model_get_item, "g_list_model_get_item", LIBRARY_GIO);
1268 	Linker.link(g_list_model_get_item_type, "g_list_model_get_item_type", LIBRARY_GIO);
1269 	Linker.link(g_list_model_get_n_items, "g_list_model_get_n_items", LIBRARY_GIO);
1270 	Linker.link(g_list_model_get_object, "g_list_model_get_object", LIBRARY_GIO);
1271 	Linker.link(g_list_model_items_changed, "g_list_model_items_changed", LIBRARY_GIO);
1272 
1273 	// gio.ListStore
1274 
1275 	Linker.link(g_list_store_get_type, "g_list_store_get_type", LIBRARY_GIO);
1276 	Linker.link(g_list_store_new, "g_list_store_new", LIBRARY_GIO);
1277 	Linker.link(g_list_store_append, "g_list_store_append", LIBRARY_GIO);
1278 	Linker.link(g_list_store_find, "g_list_store_find", LIBRARY_GIO);
1279 	Linker.link(g_list_store_find_with_equal_func, "g_list_store_find_with_equal_func", LIBRARY_GIO);
1280 	Linker.link(g_list_store_insert, "g_list_store_insert", LIBRARY_GIO);
1281 	Linker.link(g_list_store_insert_sorted, "g_list_store_insert_sorted", LIBRARY_GIO);
1282 	Linker.link(g_list_store_remove, "g_list_store_remove", LIBRARY_GIO);
1283 	Linker.link(g_list_store_remove_all, "g_list_store_remove_all", LIBRARY_GIO);
1284 	Linker.link(g_list_store_sort, "g_list_store_sort", LIBRARY_GIO);
1285 	Linker.link(g_list_store_splice, "g_list_store_splice", LIBRARY_GIO);
1286 
1287 	// gio.LoadableIcon
1288 
1289 	Linker.link(g_loadable_icon_get_type, "g_loadable_icon_get_type", LIBRARY_GIO);
1290 	Linker.link(g_loadable_icon_load, "g_loadable_icon_load", LIBRARY_GIO);
1291 	Linker.link(g_loadable_icon_load_async, "g_loadable_icon_load_async", LIBRARY_GIO);
1292 	Linker.link(g_loadable_icon_load_finish, "g_loadable_icon_load_finish", LIBRARY_GIO);
1293 
1294 	// gio.MemoryInputStream
1295 
1296 	Linker.link(g_memory_input_stream_get_type, "g_memory_input_stream_get_type", LIBRARY_GIO);
1297 	Linker.link(g_memory_input_stream_new, "g_memory_input_stream_new", LIBRARY_GIO);
1298 	Linker.link(g_memory_input_stream_new_from_bytes, "g_memory_input_stream_new_from_bytes", LIBRARY_GIO);
1299 	Linker.link(g_memory_input_stream_new_from_data, "g_memory_input_stream_new_from_data", LIBRARY_GIO);
1300 	Linker.link(g_memory_input_stream_add_bytes, "g_memory_input_stream_add_bytes", LIBRARY_GIO);
1301 	Linker.link(g_memory_input_stream_add_data, "g_memory_input_stream_add_data", LIBRARY_GIO);
1302 
1303 	// gio.MemoryMonitor
1304 
1305 	Linker.link(g_memory_monitor_get_type, "g_memory_monitor_get_type", LIBRARY_GIO);
1306 	Linker.link(g_memory_monitor_dup_default, "g_memory_monitor_dup_default", LIBRARY_GIO);
1307 
1308 	// gio.MemoryOutputStream
1309 
1310 	Linker.link(g_memory_output_stream_get_type, "g_memory_output_stream_get_type", LIBRARY_GIO);
1311 	Linker.link(g_memory_output_stream_new, "g_memory_output_stream_new", LIBRARY_GIO);
1312 	Linker.link(g_memory_output_stream_new_resizable, "g_memory_output_stream_new_resizable", LIBRARY_GIO);
1313 	Linker.link(g_memory_output_stream_get_data, "g_memory_output_stream_get_data", LIBRARY_GIO);
1314 	Linker.link(g_memory_output_stream_get_data_size, "g_memory_output_stream_get_data_size", LIBRARY_GIO);
1315 	Linker.link(g_memory_output_stream_get_size, "g_memory_output_stream_get_size", LIBRARY_GIO);
1316 	Linker.link(g_memory_output_stream_steal_as_bytes, "g_memory_output_stream_steal_as_bytes", LIBRARY_GIO);
1317 	Linker.link(g_memory_output_stream_steal_data, "g_memory_output_stream_steal_data", LIBRARY_GIO);
1318 
1319 	// gio.Menu
1320 
1321 	Linker.link(g_menu_get_type, "g_menu_get_type", LIBRARY_GIO);
1322 	Linker.link(g_menu_new, "g_menu_new", LIBRARY_GIO);
1323 	Linker.link(g_menu_append, "g_menu_append", LIBRARY_GIO);
1324 	Linker.link(g_menu_append_item, "g_menu_append_item", LIBRARY_GIO);
1325 	Linker.link(g_menu_append_section, "g_menu_append_section", LIBRARY_GIO);
1326 	Linker.link(g_menu_append_submenu, "g_menu_append_submenu", LIBRARY_GIO);
1327 	Linker.link(g_menu_freeze, "g_menu_freeze", LIBRARY_GIO);
1328 	Linker.link(g_menu_insert, "g_menu_insert", LIBRARY_GIO);
1329 	Linker.link(g_menu_insert_item, "g_menu_insert_item", LIBRARY_GIO);
1330 	Linker.link(g_menu_insert_section, "g_menu_insert_section", LIBRARY_GIO);
1331 	Linker.link(g_menu_insert_submenu, "g_menu_insert_submenu", LIBRARY_GIO);
1332 	Linker.link(g_menu_prepend, "g_menu_prepend", LIBRARY_GIO);
1333 	Linker.link(g_menu_prepend_item, "g_menu_prepend_item", LIBRARY_GIO);
1334 	Linker.link(g_menu_prepend_section, "g_menu_prepend_section", LIBRARY_GIO);
1335 	Linker.link(g_menu_prepend_submenu, "g_menu_prepend_submenu", LIBRARY_GIO);
1336 	Linker.link(g_menu_remove, "g_menu_remove", LIBRARY_GIO);
1337 	Linker.link(g_menu_remove_all, "g_menu_remove_all", LIBRARY_GIO);
1338 
1339 	// gio.MenuAttributeIter
1340 
1341 	Linker.link(g_menu_attribute_iter_get_type, "g_menu_attribute_iter_get_type", LIBRARY_GIO);
1342 	Linker.link(g_menu_attribute_iter_get_name, "g_menu_attribute_iter_get_name", LIBRARY_GIO);
1343 	Linker.link(g_menu_attribute_iter_get_next, "g_menu_attribute_iter_get_next", LIBRARY_GIO);
1344 	Linker.link(g_menu_attribute_iter_get_value, "g_menu_attribute_iter_get_value", LIBRARY_GIO);
1345 	Linker.link(g_menu_attribute_iter_next, "g_menu_attribute_iter_next", LIBRARY_GIO);
1346 
1347 	// gio.MenuItem
1348 
1349 	Linker.link(g_menu_item_get_type, "g_menu_item_get_type", LIBRARY_GIO);
1350 	Linker.link(g_menu_item_new, "g_menu_item_new", LIBRARY_GIO);
1351 	Linker.link(g_menu_item_new_from_model, "g_menu_item_new_from_model", LIBRARY_GIO);
1352 	Linker.link(g_menu_item_new_section, "g_menu_item_new_section", LIBRARY_GIO);
1353 	Linker.link(g_menu_item_new_submenu, "g_menu_item_new_submenu", LIBRARY_GIO);
1354 	Linker.link(g_menu_item_get_attribute, "g_menu_item_get_attribute", LIBRARY_GIO);
1355 	Linker.link(g_menu_item_get_attribute_value, "g_menu_item_get_attribute_value", LIBRARY_GIO);
1356 	Linker.link(g_menu_item_get_link, "g_menu_item_get_link", LIBRARY_GIO);
1357 	Linker.link(g_menu_item_set_action_and_target, "g_menu_item_set_action_and_target", LIBRARY_GIO);
1358 	Linker.link(g_menu_item_set_action_and_target_value, "g_menu_item_set_action_and_target_value", LIBRARY_GIO);
1359 	Linker.link(g_menu_item_set_attribute, "g_menu_item_set_attribute", LIBRARY_GIO);
1360 	Linker.link(g_menu_item_set_attribute_value, "g_menu_item_set_attribute_value", LIBRARY_GIO);
1361 	Linker.link(g_menu_item_set_detailed_action, "g_menu_item_set_detailed_action", LIBRARY_GIO);
1362 	Linker.link(g_menu_item_set_icon, "g_menu_item_set_icon", LIBRARY_GIO);
1363 	Linker.link(g_menu_item_set_label, "g_menu_item_set_label", LIBRARY_GIO);
1364 	Linker.link(g_menu_item_set_link, "g_menu_item_set_link", LIBRARY_GIO);
1365 	Linker.link(g_menu_item_set_section, "g_menu_item_set_section", LIBRARY_GIO);
1366 	Linker.link(g_menu_item_set_submenu, "g_menu_item_set_submenu", LIBRARY_GIO);
1367 
1368 	// gio.MenuLinkIter
1369 
1370 	Linker.link(g_menu_link_iter_get_type, "g_menu_link_iter_get_type", LIBRARY_GIO);
1371 	Linker.link(g_menu_link_iter_get_name, "g_menu_link_iter_get_name", LIBRARY_GIO);
1372 	Linker.link(g_menu_link_iter_get_next, "g_menu_link_iter_get_next", LIBRARY_GIO);
1373 	Linker.link(g_menu_link_iter_get_value, "g_menu_link_iter_get_value", LIBRARY_GIO);
1374 	Linker.link(g_menu_link_iter_next, "g_menu_link_iter_next", LIBRARY_GIO);
1375 
1376 	// gio.MenuModel
1377 
1378 	Linker.link(g_menu_model_get_type, "g_menu_model_get_type", LIBRARY_GIO);
1379 	Linker.link(g_menu_model_get_item_attribute, "g_menu_model_get_item_attribute", LIBRARY_GIO);
1380 	Linker.link(g_menu_model_get_item_attribute_value, "g_menu_model_get_item_attribute_value", LIBRARY_GIO);
1381 	Linker.link(g_menu_model_get_item_link, "g_menu_model_get_item_link", LIBRARY_GIO);
1382 	Linker.link(g_menu_model_get_n_items, "g_menu_model_get_n_items", LIBRARY_GIO);
1383 	Linker.link(g_menu_model_is_mutable, "g_menu_model_is_mutable", LIBRARY_GIO);
1384 	Linker.link(g_menu_model_items_changed, "g_menu_model_items_changed", LIBRARY_GIO);
1385 	Linker.link(g_menu_model_iterate_item_attributes, "g_menu_model_iterate_item_attributes", LIBRARY_GIO);
1386 	Linker.link(g_menu_model_iterate_item_links, "g_menu_model_iterate_item_links", LIBRARY_GIO);
1387 
1388 	// gio.Mount
1389 
1390 	Linker.link(g_mount_get_type, "g_mount_get_type", LIBRARY_GIO);
1391 	Linker.link(g_mount_can_eject, "g_mount_can_eject", LIBRARY_GIO);
1392 	Linker.link(g_mount_can_unmount, "g_mount_can_unmount", LIBRARY_GIO);
1393 	Linker.link(g_mount_eject, "g_mount_eject", LIBRARY_GIO);
1394 	Linker.link(g_mount_eject_finish, "g_mount_eject_finish", LIBRARY_GIO);
1395 	Linker.link(g_mount_eject_with_operation, "g_mount_eject_with_operation", LIBRARY_GIO);
1396 	Linker.link(g_mount_eject_with_operation_finish, "g_mount_eject_with_operation_finish", LIBRARY_GIO);
1397 	Linker.link(g_mount_get_default_location, "g_mount_get_default_location", LIBRARY_GIO);
1398 	Linker.link(g_mount_get_drive, "g_mount_get_drive", LIBRARY_GIO);
1399 	Linker.link(g_mount_get_icon, "g_mount_get_icon", LIBRARY_GIO);
1400 	Linker.link(g_mount_get_name, "g_mount_get_name", LIBRARY_GIO);
1401 	Linker.link(g_mount_get_root, "g_mount_get_root", LIBRARY_GIO);
1402 	Linker.link(g_mount_get_sort_key, "g_mount_get_sort_key", LIBRARY_GIO);
1403 	Linker.link(g_mount_get_symbolic_icon, "g_mount_get_symbolic_icon", LIBRARY_GIO);
1404 	Linker.link(g_mount_get_uuid, "g_mount_get_uuid", LIBRARY_GIO);
1405 	Linker.link(g_mount_get_volume, "g_mount_get_volume", LIBRARY_GIO);
1406 	Linker.link(g_mount_guess_content_type, "g_mount_guess_content_type", LIBRARY_GIO);
1407 	Linker.link(g_mount_guess_content_type_finish, "g_mount_guess_content_type_finish", LIBRARY_GIO);
1408 	Linker.link(g_mount_guess_content_type_sync, "g_mount_guess_content_type_sync", LIBRARY_GIO);
1409 	Linker.link(g_mount_is_shadowed, "g_mount_is_shadowed", LIBRARY_GIO);
1410 	Linker.link(g_mount_remount, "g_mount_remount", LIBRARY_GIO);
1411 	Linker.link(g_mount_remount_finish, "g_mount_remount_finish", LIBRARY_GIO);
1412 	Linker.link(g_mount_shadow, "g_mount_shadow", LIBRARY_GIO);
1413 	Linker.link(g_mount_unmount, "g_mount_unmount", LIBRARY_GIO);
1414 	Linker.link(g_mount_unmount_finish, "g_mount_unmount_finish", LIBRARY_GIO);
1415 	Linker.link(g_mount_unmount_with_operation, "g_mount_unmount_with_operation", LIBRARY_GIO);
1416 	Linker.link(g_mount_unmount_with_operation_finish, "g_mount_unmount_with_operation_finish", LIBRARY_GIO);
1417 	Linker.link(g_mount_unshadow, "g_mount_unshadow", LIBRARY_GIO);
1418 
1419 	// gio.MountOperation
1420 
1421 	Linker.link(g_mount_operation_get_type, "g_mount_operation_get_type", LIBRARY_GIO);
1422 	Linker.link(g_mount_operation_new, "g_mount_operation_new", LIBRARY_GIO);
1423 	Linker.link(g_mount_operation_get_anonymous, "g_mount_operation_get_anonymous", LIBRARY_GIO);
1424 	Linker.link(g_mount_operation_get_choice, "g_mount_operation_get_choice", LIBRARY_GIO);
1425 	Linker.link(g_mount_operation_get_domain, "g_mount_operation_get_domain", LIBRARY_GIO);
1426 	Linker.link(g_mount_operation_get_is_tcrypt_hidden_volume, "g_mount_operation_get_is_tcrypt_hidden_volume", LIBRARY_GIO);
1427 	Linker.link(g_mount_operation_get_is_tcrypt_system_volume, "g_mount_operation_get_is_tcrypt_system_volume", LIBRARY_GIO);
1428 	Linker.link(g_mount_operation_get_password, "g_mount_operation_get_password", LIBRARY_GIO);
1429 	Linker.link(g_mount_operation_get_password_save, "g_mount_operation_get_password_save", LIBRARY_GIO);
1430 	Linker.link(g_mount_operation_get_pim, "g_mount_operation_get_pim", LIBRARY_GIO);
1431 	Linker.link(g_mount_operation_get_username, "g_mount_operation_get_username", LIBRARY_GIO);
1432 	Linker.link(g_mount_operation_reply, "g_mount_operation_reply", LIBRARY_GIO);
1433 	Linker.link(g_mount_operation_set_anonymous, "g_mount_operation_set_anonymous", LIBRARY_GIO);
1434 	Linker.link(g_mount_operation_set_choice, "g_mount_operation_set_choice", LIBRARY_GIO);
1435 	Linker.link(g_mount_operation_set_domain, "g_mount_operation_set_domain", LIBRARY_GIO);
1436 	Linker.link(g_mount_operation_set_is_tcrypt_hidden_volume, "g_mount_operation_set_is_tcrypt_hidden_volume", LIBRARY_GIO);
1437 	Linker.link(g_mount_operation_set_is_tcrypt_system_volume, "g_mount_operation_set_is_tcrypt_system_volume", LIBRARY_GIO);
1438 	Linker.link(g_mount_operation_set_password, "g_mount_operation_set_password", LIBRARY_GIO);
1439 	Linker.link(g_mount_operation_set_password_save, "g_mount_operation_set_password_save", LIBRARY_GIO);
1440 	Linker.link(g_mount_operation_set_pim, "g_mount_operation_set_pim", LIBRARY_GIO);
1441 	Linker.link(g_mount_operation_set_username, "g_mount_operation_set_username", LIBRARY_GIO);
1442 
1443 	// gio.NativeSocketAddress
1444 
1445 	Linker.link(g_native_socket_address_get_type, "g_native_socket_address_get_type", LIBRARY_GIO);
1446 	Linker.link(g_native_socket_address_new, "g_native_socket_address_new", LIBRARY_GIO);
1447 
1448 	// gio.NativeVolumeMonitor
1449 
1450 	Linker.link(g_native_volume_monitor_get_type, "g_native_volume_monitor_get_type", LIBRARY_GIO);
1451 
1452 	// gio.NetworkAddress
1453 
1454 	Linker.link(g_network_address_get_type, "g_network_address_get_type", LIBRARY_GIO);
1455 	Linker.link(g_network_address_new, "g_network_address_new", LIBRARY_GIO);
1456 	Linker.link(g_network_address_new_loopback, "g_network_address_new_loopback", LIBRARY_GIO);
1457 	Linker.link(g_network_address_parse, "g_network_address_parse", LIBRARY_GIO);
1458 	Linker.link(g_network_address_parse_uri, "g_network_address_parse_uri", LIBRARY_GIO);
1459 	Linker.link(g_network_address_get_hostname, "g_network_address_get_hostname", LIBRARY_GIO);
1460 	Linker.link(g_network_address_get_port, "g_network_address_get_port", LIBRARY_GIO);
1461 	Linker.link(g_network_address_get_scheme, "g_network_address_get_scheme", LIBRARY_GIO);
1462 
1463 	// gio.NetworkMonitor
1464 
1465 	Linker.link(g_network_monitor_get_type, "g_network_monitor_get_type", LIBRARY_GIO);
1466 	Linker.link(g_network_monitor_get_default, "g_network_monitor_get_default", LIBRARY_GIO);
1467 	Linker.link(g_network_monitor_can_reach, "g_network_monitor_can_reach", LIBRARY_GIO);
1468 	Linker.link(g_network_monitor_can_reach_async, "g_network_monitor_can_reach_async", LIBRARY_GIO);
1469 	Linker.link(g_network_monitor_can_reach_finish, "g_network_monitor_can_reach_finish", LIBRARY_GIO);
1470 	Linker.link(g_network_monitor_get_connectivity, "g_network_monitor_get_connectivity", LIBRARY_GIO);
1471 	Linker.link(g_network_monitor_get_network_available, "g_network_monitor_get_network_available", LIBRARY_GIO);
1472 	Linker.link(g_network_monitor_get_network_metered, "g_network_monitor_get_network_metered", LIBRARY_GIO);
1473 
1474 	// gio.NetworkService
1475 
1476 	Linker.link(g_network_service_get_type, "g_network_service_get_type", LIBRARY_GIO);
1477 	Linker.link(g_network_service_new, "g_network_service_new", LIBRARY_GIO);
1478 	Linker.link(g_network_service_get_domain, "g_network_service_get_domain", LIBRARY_GIO);
1479 	Linker.link(g_network_service_get_protocol, "g_network_service_get_protocol", LIBRARY_GIO);
1480 	Linker.link(g_network_service_get_scheme, "g_network_service_get_scheme", LIBRARY_GIO);
1481 	Linker.link(g_network_service_get_service, "g_network_service_get_service", LIBRARY_GIO);
1482 	Linker.link(g_network_service_set_scheme, "g_network_service_set_scheme", LIBRARY_GIO);
1483 
1484 	// gio.Notification
1485 
1486 	Linker.link(g_notification_get_type, "g_notification_get_type", LIBRARY_GIO);
1487 	Linker.link(g_notification_new, "g_notification_new", LIBRARY_GIO);
1488 	Linker.link(g_notification_add_button, "g_notification_add_button", LIBRARY_GIO);
1489 	Linker.link(g_notification_add_button_with_target, "g_notification_add_button_with_target", LIBRARY_GIO);
1490 	Linker.link(g_notification_add_button_with_target_value, "g_notification_add_button_with_target_value", LIBRARY_GIO);
1491 	Linker.link(g_notification_set_body, "g_notification_set_body", LIBRARY_GIO);
1492 	Linker.link(g_notification_set_category, "g_notification_set_category", LIBRARY_GIO);
1493 	Linker.link(g_notification_set_default_action, "g_notification_set_default_action", LIBRARY_GIO);
1494 	Linker.link(g_notification_set_default_action_and_target, "g_notification_set_default_action_and_target", LIBRARY_GIO);
1495 	Linker.link(g_notification_set_default_action_and_target_value, "g_notification_set_default_action_and_target_value", LIBRARY_GIO);
1496 	Linker.link(g_notification_set_icon, "g_notification_set_icon", LIBRARY_GIO);
1497 	Linker.link(g_notification_set_priority, "g_notification_set_priority", LIBRARY_GIO);
1498 	Linker.link(g_notification_set_title, "g_notification_set_title", LIBRARY_GIO);
1499 	Linker.link(g_notification_set_urgent, "g_notification_set_urgent", LIBRARY_GIO);
1500 
1501 	// gio.OutputStream
1502 
1503 	Linker.link(g_output_stream_get_type, "g_output_stream_get_type", LIBRARY_GIO);
1504 	Linker.link(g_output_stream_clear_pending, "g_output_stream_clear_pending", LIBRARY_GIO);
1505 	Linker.link(g_output_stream_close, "g_output_stream_close", LIBRARY_GIO);
1506 	Linker.link(g_output_stream_close_async, "g_output_stream_close_async", LIBRARY_GIO);
1507 	Linker.link(g_output_stream_close_finish, "g_output_stream_close_finish", LIBRARY_GIO);
1508 	Linker.link(g_output_stream_flush, "g_output_stream_flush", LIBRARY_GIO);
1509 	Linker.link(g_output_stream_flush_async, "g_output_stream_flush_async", LIBRARY_GIO);
1510 	Linker.link(g_output_stream_flush_finish, "g_output_stream_flush_finish", LIBRARY_GIO);
1511 	Linker.link(g_output_stream_has_pending, "g_output_stream_has_pending", LIBRARY_GIO);
1512 	Linker.link(g_output_stream_is_closed, "g_output_stream_is_closed", LIBRARY_GIO);
1513 	Linker.link(g_output_stream_is_closing, "g_output_stream_is_closing", LIBRARY_GIO);
1514 	Linker.link(g_output_stream_printf, "g_output_stream_printf", LIBRARY_GIO);
1515 	Linker.link(g_output_stream_set_pending, "g_output_stream_set_pending", LIBRARY_GIO);
1516 	Linker.link(g_output_stream_splice, "g_output_stream_splice", LIBRARY_GIO);
1517 	Linker.link(g_output_stream_splice_async, "g_output_stream_splice_async", LIBRARY_GIO);
1518 	Linker.link(g_output_stream_splice_finish, "g_output_stream_splice_finish", LIBRARY_GIO);
1519 	Linker.link(g_output_stream_vprintf, "g_output_stream_vprintf", LIBRARY_GIO);
1520 	Linker.link(g_output_stream_write, "g_output_stream_write", LIBRARY_GIO);
1521 	Linker.link(g_output_stream_write_all, "g_output_stream_write_all", LIBRARY_GIO);
1522 	Linker.link(g_output_stream_write_all_async, "g_output_stream_write_all_async", LIBRARY_GIO);
1523 	Linker.link(g_output_stream_write_all_finish, "g_output_stream_write_all_finish", LIBRARY_GIO);
1524 	Linker.link(g_output_stream_write_async, "g_output_stream_write_async", LIBRARY_GIO);
1525 	Linker.link(g_output_stream_write_bytes, "g_output_stream_write_bytes", LIBRARY_GIO);
1526 	Linker.link(g_output_stream_write_bytes_async, "g_output_stream_write_bytes_async", LIBRARY_GIO);
1527 	Linker.link(g_output_stream_write_bytes_finish, "g_output_stream_write_bytes_finish", LIBRARY_GIO);
1528 	Linker.link(g_output_stream_write_finish, "g_output_stream_write_finish", LIBRARY_GIO);
1529 	Linker.link(g_output_stream_writev, "g_output_stream_writev", LIBRARY_GIO);
1530 	Linker.link(g_output_stream_writev_all, "g_output_stream_writev_all", LIBRARY_GIO);
1531 	Linker.link(g_output_stream_writev_all_async, "g_output_stream_writev_all_async", LIBRARY_GIO);
1532 	Linker.link(g_output_stream_writev_all_finish, "g_output_stream_writev_all_finish", LIBRARY_GIO);
1533 	Linker.link(g_output_stream_writev_async, "g_output_stream_writev_async", LIBRARY_GIO);
1534 	Linker.link(g_output_stream_writev_finish, "g_output_stream_writev_finish", LIBRARY_GIO);
1535 
1536 	// gio.Permission
1537 
1538 	Linker.link(g_permission_get_type, "g_permission_get_type", LIBRARY_GIO);
1539 	Linker.link(g_permission_acquire, "g_permission_acquire", LIBRARY_GIO);
1540 	Linker.link(g_permission_acquire_async, "g_permission_acquire_async", LIBRARY_GIO);
1541 	Linker.link(g_permission_acquire_finish, "g_permission_acquire_finish", LIBRARY_GIO);
1542 	Linker.link(g_permission_get_allowed, "g_permission_get_allowed", LIBRARY_GIO);
1543 	Linker.link(g_permission_get_can_acquire, "g_permission_get_can_acquire", LIBRARY_GIO);
1544 	Linker.link(g_permission_get_can_release, "g_permission_get_can_release", LIBRARY_GIO);
1545 	Linker.link(g_permission_impl_update, "g_permission_impl_update", LIBRARY_GIO);
1546 	Linker.link(g_permission_release, "g_permission_release", LIBRARY_GIO);
1547 	Linker.link(g_permission_release_async, "g_permission_release_async", LIBRARY_GIO);
1548 	Linker.link(g_permission_release_finish, "g_permission_release_finish", LIBRARY_GIO);
1549 
1550 	// gio.PollableInputStream
1551 
1552 	Linker.link(g_pollable_input_stream_get_type, "g_pollable_input_stream_get_type", LIBRARY_GIO);
1553 	Linker.link(g_pollable_input_stream_can_poll, "g_pollable_input_stream_can_poll", LIBRARY_GIO);
1554 	Linker.link(g_pollable_input_stream_create_source, "g_pollable_input_stream_create_source", LIBRARY_GIO);
1555 	Linker.link(g_pollable_input_stream_is_readable, "g_pollable_input_stream_is_readable", LIBRARY_GIO);
1556 	Linker.link(g_pollable_input_stream_read_nonblocking, "g_pollable_input_stream_read_nonblocking", LIBRARY_GIO);
1557 
1558 	// gio.PollableOutputStream
1559 
1560 	Linker.link(g_pollable_output_stream_get_type, "g_pollable_output_stream_get_type", LIBRARY_GIO);
1561 	Linker.link(g_pollable_output_stream_can_poll, "g_pollable_output_stream_can_poll", LIBRARY_GIO);
1562 	Linker.link(g_pollable_output_stream_create_source, "g_pollable_output_stream_create_source", LIBRARY_GIO);
1563 	Linker.link(g_pollable_output_stream_is_writable, "g_pollable_output_stream_is_writable", LIBRARY_GIO);
1564 	Linker.link(g_pollable_output_stream_write_nonblocking, "g_pollable_output_stream_write_nonblocking", LIBRARY_GIO);
1565 	Linker.link(g_pollable_output_stream_writev_nonblocking, "g_pollable_output_stream_writev_nonblocking", LIBRARY_GIO);
1566 
1567 	// gio.PowerProfileMonitor
1568 
1569 	Linker.link(g_power_profile_monitor_get_type, "g_power_profile_monitor_get_type", LIBRARY_GIO);
1570 	Linker.link(g_power_profile_monitor_dup_default, "g_power_profile_monitor_dup_default", LIBRARY_GIO);
1571 	Linker.link(g_power_profile_monitor_get_power_saver_enabled, "g_power_profile_monitor_get_power_saver_enabled", LIBRARY_GIO);
1572 
1573 	// gio.PropertyAction
1574 
1575 	Linker.link(g_property_action_get_type, "g_property_action_get_type", LIBRARY_GIO);
1576 	Linker.link(g_property_action_new, "g_property_action_new", LIBRARY_GIO);
1577 
1578 	// gio.Proxy
1579 
1580 	Linker.link(g_proxy_get_type, "g_proxy_get_type", LIBRARY_GIO);
1581 	Linker.link(g_proxy_get_default_for_protocol, "g_proxy_get_default_for_protocol", LIBRARY_GIO);
1582 	Linker.link(g_proxy_connect, "g_proxy_connect", LIBRARY_GIO);
1583 	Linker.link(g_proxy_connect_async, "g_proxy_connect_async", LIBRARY_GIO);
1584 	Linker.link(g_proxy_connect_finish, "g_proxy_connect_finish", LIBRARY_GIO);
1585 	Linker.link(g_proxy_supports_hostname, "g_proxy_supports_hostname", LIBRARY_GIO);
1586 
1587 	// gio.ProxyAddress
1588 
1589 	Linker.link(g_proxy_address_get_type, "g_proxy_address_get_type", LIBRARY_GIO);
1590 	Linker.link(g_proxy_address_new, "g_proxy_address_new", LIBRARY_GIO);
1591 	Linker.link(g_proxy_address_get_destination_hostname, "g_proxy_address_get_destination_hostname", LIBRARY_GIO);
1592 	Linker.link(g_proxy_address_get_destination_port, "g_proxy_address_get_destination_port", LIBRARY_GIO);
1593 	Linker.link(g_proxy_address_get_destination_protocol, "g_proxy_address_get_destination_protocol", LIBRARY_GIO);
1594 	Linker.link(g_proxy_address_get_password, "g_proxy_address_get_password", LIBRARY_GIO);
1595 	Linker.link(g_proxy_address_get_protocol, "g_proxy_address_get_protocol", LIBRARY_GIO);
1596 	Linker.link(g_proxy_address_get_uri, "g_proxy_address_get_uri", LIBRARY_GIO);
1597 	Linker.link(g_proxy_address_get_username, "g_proxy_address_get_username", LIBRARY_GIO);
1598 
1599 	// gio.ProxyAddressEnumerator
1600 
1601 	Linker.link(g_proxy_address_enumerator_get_type, "g_proxy_address_enumerator_get_type", LIBRARY_GIO);
1602 
1603 	// gio.ProxyResolver
1604 
1605 	Linker.link(g_proxy_resolver_get_type, "g_proxy_resolver_get_type", LIBRARY_GIO);
1606 	Linker.link(g_proxy_resolver_get_default, "g_proxy_resolver_get_default", LIBRARY_GIO);
1607 	Linker.link(g_proxy_resolver_is_supported, "g_proxy_resolver_is_supported", LIBRARY_GIO);
1608 	Linker.link(g_proxy_resolver_lookup, "g_proxy_resolver_lookup", LIBRARY_GIO);
1609 	Linker.link(g_proxy_resolver_lookup_async, "g_proxy_resolver_lookup_async", LIBRARY_GIO);
1610 	Linker.link(g_proxy_resolver_lookup_finish, "g_proxy_resolver_lookup_finish", LIBRARY_GIO);
1611 
1612 	// gio.RemoteActionGroup
1613 
1614 	Linker.link(g_remote_action_group_get_type, "g_remote_action_group_get_type", LIBRARY_GIO);
1615 	Linker.link(g_remote_action_group_activate_action_full, "g_remote_action_group_activate_action_full", LIBRARY_GIO);
1616 	Linker.link(g_remote_action_group_change_action_state_full, "g_remote_action_group_change_action_state_full", LIBRARY_GIO);
1617 
1618 	// gio.Resolver
1619 
1620 	Linker.link(g_resolver_get_type, "g_resolver_get_type", LIBRARY_GIO);
1621 	Linker.link(g_resolver_free_addresses, "g_resolver_free_addresses", LIBRARY_GIO);
1622 	Linker.link(g_resolver_free_targets, "g_resolver_free_targets", LIBRARY_GIO);
1623 	Linker.link(g_resolver_get_default, "g_resolver_get_default", LIBRARY_GIO);
1624 	Linker.link(g_resolver_lookup_by_address, "g_resolver_lookup_by_address", LIBRARY_GIO);
1625 	Linker.link(g_resolver_lookup_by_address_async, "g_resolver_lookup_by_address_async", LIBRARY_GIO);
1626 	Linker.link(g_resolver_lookup_by_address_finish, "g_resolver_lookup_by_address_finish", LIBRARY_GIO);
1627 	Linker.link(g_resolver_lookup_by_name, "g_resolver_lookup_by_name", LIBRARY_GIO);
1628 	Linker.link(g_resolver_lookup_by_name_async, "g_resolver_lookup_by_name_async", LIBRARY_GIO);
1629 	Linker.link(g_resolver_lookup_by_name_finish, "g_resolver_lookup_by_name_finish", LIBRARY_GIO);
1630 	Linker.link(g_resolver_lookup_by_name_with_flags, "g_resolver_lookup_by_name_with_flags", LIBRARY_GIO);
1631 	Linker.link(g_resolver_lookup_by_name_with_flags_async, "g_resolver_lookup_by_name_with_flags_async", LIBRARY_GIO);
1632 	Linker.link(g_resolver_lookup_by_name_with_flags_finish, "g_resolver_lookup_by_name_with_flags_finish", LIBRARY_GIO);
1633 	Linker.link(g_resolver_lookup_records, "g_resolver_lookup_records", LIBRARY_GIO);
1634 	Linker.link(g_resolver_lookup_records_async, "g_resolver_lookup_records_async", LIBRARY_GIO);
1635 	Linker.link(g_resolver_lookup_records_finish, "g_resolver_lookup_records_finish", LIBRARY_GIO);
1636 	Linker.link(g_resolver_lookup_service, "g_resolver_lookup_service", LIBRARY_GIO);
1637 	Linker.link(g_resolver_lookup_service_async, "g_resolver_lookup_service_async", LIBRARY_GIO);
1638 	Linker.link(g_resolver_lookup_service_finish, "g_resolver_lookup_service_finish", LIBRARY_GIO);
1639 	Linker.link(g_resolver_set_default, "g_resolver_set_default", LIBRARY_GIO);
1640 
1641 	// gio.Resource
1642 
1643 	Linker.link(g_resource_get_type, "g_resource_get_type", LIBRARY_GIO);
1644 	Linker.link(g_resource_new_from_data, "g_resource_new_from_data", LIBRARY_GIO);
1645 	Linker.link(g_resources_register, "g_resources_register", LIBRARY_GIO);
1646 	Linker.link(g_resources_unregister, "g_resources_unregister", LIBRARY_GIO);
1647 	Linker.link(g_resource_enumerate_children, "g_resource_enumerate_children", LIBRARY_GIO);
1648 	Linker.link(g_resource_get_info, "g_resource_get_info", LIBRARY_GIO);
1649 	Linker.link(g_resource_lookup_data, "g_resource_lookup_data", LIBRARY_GIO);
1650 	Linker.link(g_resource_open_stream, "g_resource_open_stream", LIBRARY_GIO);
1651 	Linker.link(g_resource_ref, "g_resource_ref", LIBRARY_GIO);
1652 	Linker.link(g_resource_unref, "g_resource_unref", LIBRARY_GIO);
1653 	Linker.link(g_resource_load, "g_resource_load", LIBRARY_GIO);
1654 	Linker.link(g_resources_enumerate_children, "g_resources_enumerate_children", LIBRARY_GIO);
1655 	Linker.link(g_resources_get_info, "g_resources_get_info", LIBRARY_GIO);
1656 	Linker.link(g_resources_lookup_data, "g_resources_lookup_data", LIBRARY_GIO);
1657 	Linker.link(g_resources_open_stream, "g_resources_open_stream", LIBRARY_GIO);
1658 
1659 	// gio.Seekable
1660 
1661 	Linker.link(g_seekable_get_type, "g_seekable_get_type", LIBRARY_GIO);
1662 	Linker.link(g_seekable_can_seek, "g_seekable_can_seek", LIBRARY_GIO);
1663 	Linker.link(g_seekable_can_truncate, "g_seekable_can_truncate", LIBRARY_GIO);
1664 	Linker.link(g_seekable_seek, "g_seekable_seek", LIBRARY_GIO);
1665 	Linker.link(g_seekable_tell, "g_seekable_tell", LIBRARY_GIO);
1666 	Linker.link(g_seekable_truncate, "g_seekable_truncate", LIBRARY_GIO);
1667 
1668 	// gio.Settings
1669 
1670 	Linker.link(g_settings_get_type, "g_settings_get_type", LIBRARY_GIO);
1671 	Linker.link(g_settings_new, "g_settings_new", LIBRARY_GIO);
1672 	Linker.link(g_settings_new_full, "g_settings_new_full", LIBRARY_GIO);
1673 	Linker.link(g_settings_new_with_backend, "g_settings_new_with_backend", LIBRARY_GIO);
1674 	Linker.link(g_settings_new_with_backend_and_path, "g_settings_new_with_backend_and_path", LIBRARY_GIO);
1675 	Linker.link(g_settings_new_with_path, "g_settings_new_with_path", LIBRARY_GIO);
1676 	Linker.link(g_settings_list_relocatable_schemas, "g_settings_list_relocatable_schemas", LIBRARY_GIO);
1677 	Linker.link(g_settings_list_schemas, "g_settings_list_schemas", LIBRARY_GIO);
1678 	Linker.link(g_settings_sync, "g_settings_sync", LIBRARY_GIO);
1679 	Linker.link(g_settings_unbind, "g_settings_unbind", LIBRARY_GIO);
1680 	Linker.link(g_settings_apply, "g_settings_apply", LIBRARY_GIO);
1681 	Linker.link(g_settings_bind, "g_settings_bind", LIBRARY_GIO);
1682 	Linker.link(g_settings_bind_with_mapping, "g_settings_bind_with_mapping", LIBRARY_GIO);
1683 	Linker.link(g_settings_bind_writable, "g_settings_bind_writable", LIBRARY_GIO);
1684 	Linker.link(g_settings_create_action, "g_settings_create_action", LIBRARY_GIO);
1685 	Linker.link(g_settings_delay, "g_settings_delay", LIBRARY_GIO);
1686 	Linker.link(g_settings_get, "g_settings_get", LIBRARY_GIO);
1687 	Linker.link(g_settings_get_boolean, "g_settings_get_boolean", LIBRARY_GIO);
1688 	Linker.link(g_settings_get_child, "g_settings_get_child", LIBRARY_GIO);
1689 	Linker.link(g_settings_get_default_value, "g_settings_get_default_value", LIBRARY_GIO);
1690 	Linker.link(g_settings_get_double, "g_settings_get_double", LIBRARY_GIO);
1691 	Linker.link(g_settings_get_enum, "g_settings_get_enum", LIBRARY_GIO);
1692 	Linker.link(g_settings_get_flags, "g_settings_get_flags", LIBRARY_GIO);
1693 	Linker.link(g_settings_get_has_unapplied, "g_settings_get_has_unapplied", LIBRARY_GIO);
1694 	Linker.link(g_settings_get_int, "g_settings_get_int", LIBRARY_GIO);
1695 	Linker.link(g_settings_get_int64, "g_settings_get_int64", LIBRARY_GIO);
1696 	Linker.link(g_settings_get_mapped, "g_settings_get_mapped", LIBRARY_GIO);
1697 	Linker.link(g_settings_get_range, "g_settings_get_range", LIBRARY_GIO);
1698 	Linker.link(g_settings_get_string, "g_settings_get_string", LIBRARY_GIO);
1699 	Linker.link(g_settings_get_strv, "g_settings_get_strv", LIBRARY_GIO);
1700 	Linker.link(g_settings_get_uint, "g_settings_get_uint", LIBRARY_GIO);
1701 	Linker.link(g_settings_get_uint64, "g_settings_get_uint64", LIBRARY_GIO);
1702 	Linker.link(g_settings_get_user_value, "g_settings_get_user_value", LIBRARY_GIO);
1703 	Linker.link(g_settings_get_value, "g_settings_get_value", LIBRARY_GIO);
1704 	Linker.link(g_settings_is_writable, "g_settings_is_writable", LIBRARY_GIO);
1705 	Linker.link(g_settings_list_children, "g_settings_list_children", LIBRARY_GIO);
1706 	Linker.link(g_settings_list_keys, "g_settings_list_keys", LIBRARY_GIO);
1707 	Linker.link(g_settings_range_check, "g_settings_range_check", LIBRARY_GIO);
1708 	Linker.link(g_settings_reset, "g_settings_reset", LIBRARY_GIO);
1709 	Linker.link(g_settings_revert, "g_settings_revert", LIBRARY_GIO);
1710 	Linker.link(g_settings_set, "g_settings_set", LIBRARY_GIO);
1711 	Linker.link(g_settings_set_boolean, "g_settings_set_boolean", LIBRARY_GIO);
1712 	Linker.link(g_settings_set_double, "g_settings_set_double", LIBRARY_GIO);
1713 	Linker.link(g_settings_set_enum, "g_settings_set_enum", LIBRARY_GIO);
1714 	Linker.link(g_settings_set_flags, "g_settings_set_flags", LIBRARY_GIO);
1715 	Linker.link(g_settings_set_int, "g_settings_set_int", LIBRARY_GIO);
1716 	Linker.link(g_settings_set_int64, "g_settings_set_int64", LIBRARY_GIO);
1717 	Linker.link(g_settings_set_string, "g_settings_set_string", LIBRARY_GIO);
1718 	Linker.link(g_settings_set_strv, "g_settings_set_strv", LIBRARY_GIO);
1719 	Linker.link(g_settings_set_uint, "g_settings_set_uint", LIBRARY_GIO);
1720 	Linker.link(g_settings_set_uint64, "g_settings_set_uint64", LIBRARY_GIO);
1721 	Linker.link(g_settings_set_value, "g_settings_set_value", LIBRARY_GIO);
1722 
1723 	// gio.SettingsBackend
1724 
1725 	Linker.link(g_settings_backend_get_type, "g_settings_backend_get_type", LIBRARY_GIO);
1726 	Linker.link(g_settings_backend_flatten_tree, "g_settings_backend_flatten_tree", LIBRARY_GIO);
1727 	Linker.link(g_settings_backend_get_default, "g_settings_backend_get_default", LIBRARY_GIO);
1728 	Linker.link(g_settings_backend_changed, "g_settings_backend_changed", LIBRARY_GIO);
1729 	Linker.link(g_settings_backend_changed_tree, "g_settings_backend_changed_tree", LIBRARY_GIO);
1730 	Linker.link(g_settings_backend_keys_changed, "g_settings_backend_keys_changed", LIBRARY_GIO);
1731 	Linker.link(g_settings_backend_path_changed, "g_settings_backend_path_changed", LIBRARY_GIO);
1732 	Linker.link(g_settings_backend_path_writable_changed, "g_settings_backend_path_writable_changed", LIBRARY_GIO);
1733 	Linker.link(g_settings_backend_writable_changed, "g_settings_backend_writable_changed", LIBRARY_GIO);
1734 	Linker.link(g_keyfile_settings_backend_new, "g_keyfile_settings_backend_new", LIBRARY_GIO);
1735 	Linker.link(g_memory_settings_backend_new, "g_memory_settings_backend_new", LIBRARY_GIO);
1736 	Linker.link(g_null_settings_backend_new, "g_null_settings_backend_new", LIBRARY_GIO);
1737 
1738 	// gio.SettingsSchema
1739 
1740 	Linker.link(g_settings_schema_get_type, "g_settings_schema_get_type", LIBRARY_GIO);
1741 	Linker.link(g_settings_schema_get_id, "g_settings_schema_get_id", LIBRARY_GIO);
1742 	Linker.link(g_settings_schema_get_key, "g_settings_schema_get_key", LIBRARY_GIO);
1743 	Linker.link(g_settings_schema_get_path, "g_settings_schema_get_path", LIBRARY_GIO);
1744 	Linker.link(g_settings_schema_has_key, "g_settings_schema_has_key", LIBRARY_GIO);
1745 	Linker.link(g_settings_schema_list_children, "g_settings_schema_list_children", LIBRARY_GIO);
1746 	Linker.link(g_settings_schema_list_keys, "g_settings_schema_list_keys", LIBRARY_GIO);
1747 	Linker.link(g_settings_schema_ref, "g_settings_schema_ref", LIBRARY_GIO);
1748 	Linker.link(g_settings_schema_unref, "g_settings_schema_unref", LIBRARY_GIO);
1749 
1750 	// gio.SettingsSchemaKey
1751 
1752 	Linker.link(g_settings_schema_key_get_type, "g_settings_schema_key_get_type", LIBRARY_GIO);
1753 	Linker.link(g_settings_schema_key_get_default_value, "g_settings_schema_key_get_default_value", LIBRARY_GIO);
1754 	Linker.link(g_settings_schema_key_get_description, "g_settings_schema_key_get_description", LIBRARY_GIO);
1755 	Linker.link(g_settings_schema_key_get_name, "g_settings_schema_key_get_name", LIBRARY_GIO);
1756 	Linker.link(g_settings_schema_key_get_range, "g_settings_schema_key_get_range", LIBRARY_GIO);
1757 	Linker.link(g_settings_schema_key_get_summary, "g_settings_schema_key_get_summary", LIBRARY_GIO);
1758 	Linker.link(g_settings_schema_key_get_value_type, "g_settings_schema_key_get_value_type", LIBRARY_GIO);
1759 	Linker.link(g_settings_schema_key_range_check, "g_settings_schema_key_range_check", LIBRARY_GIO);
1760 	Linker.link(g_settings_schema_key_ref, "g_settings_schema_key_ref", LIBRARY_GIO);
1761 	Linker.link(g_settings_schema_key_unref, "g_settings_schema_key_unref", LIBRARY_GIO);
1762 
1763 	// gio.SettingsSchemaSource
1764 
1765 	Linker.link(g_settings_schema_source_get_type, "g_settings_schema_source_get_type", LIBRARY_GIO);
1766 	Linker.link(g_settings_schema_source_new_from_directory, "g_settings_schema_source_new_from_directory", LIBRARY_GIO);
1767 	Linker.link(g_settings_schema_source_list_schemas, "g_settings_schema_source_list_schemas", LIBRARY_GIO);
1768 	Linker.link(g_settings_schema_source_lookup, "g_settings_schema_source_lookup", LIBRARY_GIO);
1769 	Linker.link(g_settings_schema_source_ref, "g_settings_schema_source_ref", LIBRARY_GIO);
1770 	Linker.link(g_settings_schema_source_unref, "g_settings_schema_source_unref", LIBRARY_GIO);
1771 	Linker.link(g_settings_schema_source_get_default, "g_settings_schema_source_get_default", LIBRARY_GIO);
1772 
1773 	// gio.SimpleAction
1774 
1775 	Linker.link(g_simple_action_get_type, "g_simple_action_get_type", LIBRARY_GIO);
1776 	Linker.link(g_simple_action_new, "g_simple_action_new", LIBRARY_GIO);
1777 	Linker.link(g_simple_action_new_stateful, "g_simple_action_new_stateful", LIBRARY_GIO);
1778 	Linker.link(g_simple_action_set_enabled, "g_simple_action_set_enabled", LIBRARY_GIO);
1779 	Linker.link(g_simple_action_set_state, "g_simple_action_set_state", LIBRARY_GIO);
1780 	Linker.link(g_simple_action_set_state_hint, "g_simple_action_set_state_hint", LIBRARY_GIO);
1781 
1782 	// gio.SimpleActionGroup
1783 
1784 	Linker.link(g_simple_action_group_get_type, "g_simple_action_group_get_type", LIBRARY_GIO);
1785 	Linker.link(g_simple_action_group_new, "g_simple_action_group_new", LIBRARY_GIO);
1786 	Linker.link(g_simple_action_group_add_entries, "g_simple_action_group_add_entries", LIBRARY_GIO);
1787 	Linker.link(g_simple_action_group_insert, "g_simple_action_group_insert", LIBRARY_GIO);
1788 	Linker.link(g_simple_action_group_lookup, "g_simple_action_group_lookup", LIBRARY_GIO);
1789 	Linker.link(g_simple_action_group_remove, "g_simple_action_group_remove", LIBRARY_GIO);
1790 
1791 	// gio.SimpleAsyncResult
1792 
1793 	Linker.link(g_simple_async_result_get_type, "g_simple_async_result_get_type", LIBRARY_GIO);
1794 	Linker.link(g_simple_async_result_new, "g_simple_async_result_new", LIBRARY_GIO);
1795 	Linker.link(g_simple_async_result_new_error, "g_simple_async_result_new_error", LIBRARY_GIO);
1796 	Linker.link(g_simple_async_result_new_from_error, "g_simple_async_result_new_from_error", LIBRARY_GIO);
1797 	Linker.link(g_simple_async_result_new_take_error, "g_simple_async_result_new_take_error", LIBRARY_GIO);
1798 	Linker.link(g_simple_async_result_is_valid, "g_simple_async_result_is_valid", LIBRARY_GIO);
1799 	Linker.link(g_simple_async_result_complete, "g_simple_async_result_complete", LIBRARY_GIO);
1800 	Linker.link(g_simple_async_result_complete_in_idle, "g_simple_async_result_complete_in_idle", LIBRARY_GIO);
1801 	Linker.link(g_simple_async_result_get_op_res_gboolean, "g_simple_async_result_get_op_res_gboolean", LIBRARY_GIO);
1802 	Linker.link(g_simple_async_result_get_op_res_gpointer, "g_simple_async_result_get_op_res_gpointer", LIBRARY_GIO);
1803 	Linker.link(g_simple_async_result_get_op_res_gssize, "g_simple_async_result_get_op_res_gssize", LIBRARY_GIO);
1804 	Linker.link(g_simple_async_result_get_source_tag, "g_simple_async_result_get_source_tag", LIBRARY_GIO);
1805 	Linker.link(g_simple_async_result_propagate_error, "g_simple_async_result_propagate_error", LIBRARY_GIO);
1806 	Linker.link(g_simple_async_result_run_in_thread, "g_simple_async_result_run_in_thread", LIBRARY_GIO);
1807 	Linker.link(g_simple_async_result_set_check_cancellable, "g_simple_async_result_set_check_cancellable", LIBRARY_GIO);
1808 	Linker.link(g_simple_async_result_set_error, "g_simple_async_result_set_error", LIBRARY_GIO);
1809 	Linker.link(g_simple_async_result_set_error_va, "g_simple_async_result_set_error_va", LIBRARY_GIO);
1810 	Linker.link(g_simple_async_result_set_from_error, "g_simple_async_result_set_from_error", LIBRARY_GIO);
1811 	Linker.link(g_simple_async_result_set_handle_cancellation, "g_simple_async_result_set_handle_cancellation", LIBRARY_GIO);
1812 	Linker.link(g_simple_async_result_set_op_res_gboolean, "g_simple_async_result_set_op_res_gboolean", LIBRARY_GIO);
1813 	Linker.link(g_simple_async_result_set_op_res_gpointer, "g_simple_async_result_set_op_res_gpointer", LIBRARY_GIO);
1814 	Linker.link(g_simple_async_result_set_op_res_gssize, "g_simple_async_result_set_op_res_gssize", LIBRARY_GIO);
1815 	Linker.link(g_simple_async_result_take_error, "g_simple_async_result_take_error", LIBRARY_GIO);
1816 	Linker.link(g_simple_async_report_error_in_idle, "g_simple_async_report_error_in_idle", LIBRARY_GIO);
1817 	Linker.link(g_simple_async_report_gerror_in_idle, "g_simple_async_report_gerror_in_idle", LIBRARY_GIO);
1818 	Linker.link(g_simple_async_report_take_gerror_in_idle, "g_simple_async_report_take_gerror_in_idle", LIBRARY_GIO);
1819 
1820 	// gio.SimpleIOStream
1821 
1822 	Linker.link(g_simple_io_stream_get_type, "g_simple_io_stream_get_type", LIBRARY_GIO);
1823 	Linker.link(g_simple_io_stream_new, "g_simple_io_stream_new", LIBRARY_GIO);
1824 
1825 	// gio.SimplePermission
1826 
1827 	Linker.link(g_simple_permission_get_type, "g_simple_permission_get_type", LIBRARY_GIO);
1828 	Linker.link(g_simple_permission_new, "g_simple_permission_new", LIBRARY_GIO);
1829 
1830 	// gio.SimpleProxyResolver
1831 
1832 	Linker.link(g_simple_proxy_resolver_get_type, "g_simple_proxy_resolver_get_type", LIBRARY_GIO);
1833 	Linker.link(g_simple_proxy_resolver_new, "g_simple_proxy_resolver_new", LIBRARY_GIO);
1834 	Linker.link(g_simple_proxy_resolver_set_default_proxy, "g_simple_proxy_resolver_set_default_proxy", LIBRARY_GIO);
1835 	Linker.link(g_simple_proxy_resolver_set_ignore_hosts, "g_simple_proxy_resolver_set_ignore_hosts", LIBRARY_GIO);
1836 	Linker.link(g_simple_proxy_resolver_set_uri_proxy, "g_simple_proxy_resolver_set_uri_proxy", LIBRARY_GIO);
1837 
1838 	// gio.Socket
1839 
1840 	Linker.link(g_socket_get_type, "g_socket_get_type", LIBRARY_GIO);
1841 	Linker.link(g_socket_new, "g_socket_new", LIBRARY_GIO);
1842 	Linker.link(g_socket_new_from_fd, "g_socket_new_from_fd", LIBRARY_GIO);
1843 	Linker.link(g_socket_accept, "g_socket_accept", LIBRARY_GIO);
1844 	Linker.link(g_socket_bind, "g_socket_bind", LIBRARY_GIO);
1845 	Linker.link(g_socket_check_connect_result, "g_socket_check_connect_result", LIBRARY_GIO);
1846 	Linker.link(g_socket_close, "g_socket_close", LIBRARY_GIO);
1847 	Linker.link(g_socket_condition_check, "g_socket_condition_check", LIBRARY_GIO);
1848 	Linker.link(g_socket_condition_timed_wait, "g_socket_condition_timed_wait", LIBRARY_GIO);
1849 	Linker.link(g_socket_condition_wait, "g_socket_condition_wait", LIBRARY_GIO);
1850 	Linker.link(g_socket_connect, "g_socket_connect", LIBRARY_GIO);
1851 	Linker.link(g_socket_connection_factory_create_connection, "g_socket_connection_factory_create_connection", LIBRARY_GIO);
1852 	Linker.link(g_socket_create_source, "g_socket_create_source", LIBRARY_GIO);
1853 	Linker.link(g_socket_get_available_bytes, "g_socket_get_available_bytes", LIBRARY_GIO);
1854 	Linker.link(g_socket_get_blocking, "g_socket_get_blocking", LIBRARY_GIO);
1855 	Linker.link(g_socket_get_broadcast, "g_socket_get_broadcast", LIBRARY_GIO);
1856 	Linker.link(g_socket_get_credentials, "g_socket_get_credentials", LIBRARY_GIO);
1857 	Linker.link(g_socket_get_family, "g_socket_get_family", LIBRARY_GIO);
1858 	Linker.link(g_socket_get_fd, "g_socket_get_fd", LIBRARY_GIO);
1859 	Linker.link(g_socket_get_keepalive, "g_socket_get_keepalive", LIBRARY_GIO);
1860 	Linker.link(g_socket_get_listen_backlog, "g_socket_get_listen_backlog", LIBRARY_GIO);
1861 	Linker.link(g_socket_get_local_address, "g_socket_get_local_address", LIBRARY_GIO);
1862 	Linker.link(g_socket_get_multicast_loopback, "g_socket_get_multicast_loopback", LIBRARY_GIO);
1863 	Linker.link(g_socket_get_multicast_ttl, "g_socket_get_multicast_ttl", LIBRARY_GIO);
1864 	Linker.link(g_socket_get_option, "g_socket_get_option", LIBRARY_GIO);
1865 	Linker.link(g_socket_get_protocol, "g_socket_get_protocol", LIBRARY_GIO);
1866 	Linker.link(g_socket_get_remote_address, "g_socket_get_remote_address", LIBRARY_GIO);
1867 	Linker.link(g_socket_get_socket_type, "g_socket_get_socket_type", LIBRARY_GIO);
1868 	Linker.link(g_socket_get_timeout, "g_socket_get_timeout", LIBRARY_GIO);
1869 	Linker.link(g_socket_get_ttl, "g_socket_get_ttl", LIBRARY_GIO);
1870 	Linker.link(g_socket_is_closed, "g_socket_is_closed", LIBRARY_GIO);
1871 	Linker.link(g_socket_is_connected, "g_socket_is_connected", LIBRARY_GIO);
1872 	Linker.link(g_socket_join_multicast_group, "g_socket_join_multicast_group", LIBRARY_GIO);
1873 	Linker.link(g_socket_join_multicast_group_ssm, "g_socket_join_multicast_group_ssm", LIBRARY_GIO);
1874 	Linker.link(g_socket_leave_multicast_group, "g_socket_leave_multicast_group", LIBRARY_GIO);
1875 	Linker.link(g_socket_leave_multicast_group_ssm, "g_socket_leave_multicast_group_ssm", LIBRARY_GIO);
1876 	Linker.link(g_socket_listen, "g_socket_listen", LIBRARY_GIO);
1877 	Linker.link(g_socket_receive, "g_socket_receive", LIBRARY_GIO);
1878 	Linker.link(g_socket_receive_from, "g_socket_receive_from", LIBRARY_GIO);
1879 	Linker.link(g_socket_receive_message, "g_socket_receive_message", LIBRARY_GIO);
1880 	Linker.link(g_socket_receive_messages, "g_socket_receive_messages", LIBRARY_GIO);
1881 	Linker.link(g_socket_receive_with_blocking, "g_socket_receive_with_blocking", LIBRARY_GIO);
1882 	Linker.link(g_socket_send, "g_socket_send", LIBRARY_GIO);
1883 	Linker.link(g_socket_send_message, "g_socket_send_message", LIBRARY_GIO);
1884 	Linker.link(g_socket_send_message_with_timeout, "g_socket_send_message_with_timeout", LIBRARY_GIO);
1885 	Linker.link(g_socket_send_messages, "g_socket_send_messages", LIBRARY_GIO);
1886 	Linker.link(g_socket_send_to, "g_socket_send_to", LIBRARY_GIO);
1887 	Linker.link(g_socket_send_with_blocking, "g_socket_send_with_blocking", LIBRARY_GIO);
1888 	Linker.link(g_socket_set_blocking, "g_socket_set_blocking", LIBRARY_GIO);
1889 	Linker.link(g_socket_set_broadcast, "g_socket_set_broadcast", LIBRARY_GIO);
1890 	Linker.link(g_socket_set_keepalive, "g_socket_set_keepalive", LIBRARY_GIO);
1891 	Linker.link(g_socket_set_listen_backlog, "g_socket_set_listen_backlog", LIBRARY_GIO);
1892 	Linker.link(g_socket_set_multicast_loopback, "g_socket_set_multicast_loopback", LIBRARY_GIO);
1893 	Linker.link(g_socket_set_multicast_ttl, "g_socket_set_multicast_ttl", LIBRARY_GIO);
1894 	Linker.link(g_socket_set_option, "g_socket_set_option", LIBRARY_GIO);
1895 	Linker.link(g_socket_set_timeout, "g_socket_set_timeout", LIBRARY_GIO);
1896 	Linker.link(g_socket_set_ttl, "g_socket_set_ttl", LIBRARY_GIO);
1897 	Linker.link(g_socket_shutdown, "g_socket_shutdown", LIBRARY_GIO);
1898 	Linker.link(g_socket_speaks_ipv4, "g_socket_speaks_ipv4", LIBRARY_GIO);
1899 
1900 	// gio.SocketAddress
1901 
1902 	Linker.link(g_socket_address_get_type, "g_socket_address_get_type", LIBRARY_GIO);
1903 	Linker.link(g_socket_address_new_from_native, "g_socket_address_new_from_native", LIBRARY_GIO);
1904 	Linker.link(g_socket_address_get_family, "g_socket_address_get_family", LIBRARY_GIO);
1905 	Linker.link(g_socket_address_get_native_size, "g_socket_address_get_native_size", LIBRARY_GIO);
1906 	Linker.link(g_socket_address_to_native, "g_socket_address_to_native", LIBRARY_GIO);
1907 
1908 	// gio.SocketAddressEnumerator
1909 
1910 	Linker.link(g_socket_address_enumerator_get_type, "g_socket_address_enumerator_get_type", LIBRARY_GIO);
1911 	Linker.link(g_socket_address_enumerator_next, "g_socket_address_enumerator_next", LIBRARY_GIO);
1912 	Linker.link(g_socket_address_enumerator_next_async, "g_socket_address_enumerator_next_async", LIBRARY_GIO);
1913 	Linker.link(g_socket_address_enumerator_next_finish, "g_socket_address_enumerator_next_finish", LIBRARY_GIO);
1914 
1915 	// gio.SocketClient
1916 
1917 	Linker.link(g_socket_client_get_type, "g_socket_client_get_type", LIBRARY_GIO);
1918 	Linker.link(g_socket_client_new, "g_socket_client_new", LIBRARY_GIO);
1919 	Linker.link(g_socket_client_add_application_proxy, "g_socket_client_add_application_proxy", LIBRARY_GIO);
1920 	Linker.link(g_socket_client_connect, "g_socket_client_connect", LIBRARY_GIO);
1921 	Linker.link(g_socket_client_connect_async, "g_socket_client_connect_async", LIBRARY_GIO);
1922 	Linker.link(g_socket_client_connect_finish, "g_socket_client_connect_finish", LIBRARY_GIO);
1923 	Linker.link(g_socket_client_connect_to_host, "g_socket_client_connect_to_host", LIBRARY_GIO);
1924 	Linker.link(g_socket_client_connect_to_host_async, "g_socket_client_connect_to_host_async", LIBRARY_GIO);
1925 	Linker.link(g_socket_client_connect_to_host_finish, "g_socket_client_connect_to_host_finish", LIBRARY_GIO);
1926 	Linker.link(g_socket_client_connect_to_service, "g_socket_client_connect_to_service", LIBRARY_GIO);
1927 	Linker.link(g_socket_client_connect_to_service_async, "g_socket_client_connect_to_service_async", LIBRARY_GIO);
1928 	Linker.link(g_socket_client_connect_to_service_finish, "g_socket_client_connect_to_service_finish", LIBRARY_GIO);
1929 	Linker.link(g_socket_client_connect_to_uri, "g_socket_client_connect_to_uri", LIBRARY_GIO);
1930 	Linker.link(g_socket_client_connect_to_uri_async, "g_socket_client_connect_to_uri_async", LIBRARY_GIO);
1931 	Linker.link(g_socket_client_connect_to_uri_finish, "g_socket_client_connect_to_uri_finish", LIBRARY_GIO);
1932 	Linker.link(g_socket_client_get_enable_proxy, "g_socket_client_get_enable_proxy", LIBRARY_GIO);
1933 	Linker.link(g_socket_client_get_family, "g_socket_client_get_family", LIBRARY_GIO);
1934 	Linker.link(g_socket_client_get_local_address, "g_socket_client_get_local_address", LIBRARY_GIO);
1935 	Linker.link(g_socket_client_get_protocol, "g_socket_client_get_protocol", LIBRARY_GIO);
1936 	Linker.link(g_socket_client_get_proxy_resolver, "g_socket_client_get_proxy_resolver", LIBRARY_GIO);
1937 	Linker.link(g_socket_client_get_socket_type, "g_socket_client_get_socket_type", LIBRARY_GIO);
1938 	Linker.link(g_socket_client_get_timeout, "g_socket_client_get_timeout", LIBRARY_GIO);
1939 	Linker.link(g_socket_client_get_tls, "g_socket_client_get_tls", LIBRARY_GIO);
1940 	Linker.link(g_socket_client_get_tls_validation_flags, "g_socket_client_get_tls_validation_flags", LIBRARY_GIO);
1941 	Linker.link(g_socket_client_set_enable_proxy, "g_socket_client_set_enable_proxy", LIBRARY_GIO);
1942 	Linker.link(g_socket_client_set_family, "g_socket_client_set_family", LIBRARY_GIO);
1943 	Linker.link(g_socket_client_set_local_address, "g_socket_client_set_local_address", LIBRARY_GIO);
1944 	Linker.link(g_socket_client_set_protocol, "g_socket_client_set_protocol", LIBRARY_GIO);
1945 	Linker.link(g_socket_client_set_proxy_resolver, "g_socket_client_set_proxy_resolver", LIBRARY_GIO);
1946 	Linker.link(g_socket_client_set_socket_type, "g_socket_client_set_socket_type", LIBRARY_GIO);
1947 	Linker.link(g_socket_client_set_timeout, "g_socket_client_set_timeout", LIBRARY_GIO);
1948 	Linker.link(g_socket_client_set_tls, "g_socket_client_set_tls", LIBRARY_GIO);
1949 	Linker.link(g_socket_client_set_tls_validation_flags, "g_socket_client_set_tls_validation_flags", LIBRARY_GIO);
1950 
1951 	// gio.SocketConnectable
1952 
1953 	Linker.link(g_socket_connectable_get_type, "g_socket_connectable_get_type", LIBRARY_GIO);
1954 	Linker.link(g_socket_connectable_enumerate, "g_socket_connectable_enumerate", LIBRARY_GIO);
1955 	Linker.link(g_socket_connectable_proxy_enumerate, "g_socket_connectable_proxy_enumerate", LIBRARY_GIO);
1956 	Linker.link(g_socket_connectable_to_string, "g_socket_connectable_to_string", LIBRARY_GIO);
1957 
1958 	// gio.SocketConnection
1959 
1960 	Linker.link(g_socket_connection_get_type, "g_socket_connection_get_type", LIBRARY_GIO);
1961 	Linker.link(g_socket_connection_factory_lookup_type, "g_socket_connection_factory_lookup_type", LIBRARY_GIO);
1962 	Linker.link(g_socket_connection_factory_register_type, "g_socket_connection_factory_register_type", LIBRARY_GIO);
1963 	Linker.link(g_socket_connection_connect, "g_socket_connection_connect", LIBRARY_GIO);
1964 	Linker.link(g_socket_connection_connect_async, "g_socket_connection_connect_async", LIBRARY_GIO);
1965 	Linker.link(g_socket_connection_connect_finish, "g_socket_connection_connect_finish", LIBRARY_GIO);
1966 	Linker.link(g_socket_connection_get_local_address, "g_socket_connection_get_local_address", LIBRARY_GIO);
1967 	Linker.link(g_socket_connection_get_remote_address, "g_socket_connection_get_remote_address", LIBRARY_GIO);
1968 	Linker.link(g_socket_connection_get_socket, "g_socket_connection_get_socket", LIBRARY_GIO);
1969 	Linker.link(g_socket_connection_is_connected, "g_socket_connection_is_connected", LIBRARY_GIO);
1970 
1971 	// gio.SocketControlMessage
1972 
1973 	Linker.link(g_socket_control_message_get_type, "g_socket_control_message_get_type", LIBRARY_GIO);
1974 	Linker.link(g_socket_control_message_deserialize, "g_socket_control_message_deserialize", LIBRARY_GIO);
1975 	Linker.link(g_socket_control_message_get_level, "g_socket_control_message_get_level", LIBRARY_GIO);
1976 	Linker.link(g_socket_control_message_get_msg_type, "g_socket_control_message_get_msg_type", LIBRARY_GIO);
1977 	Linker.link(g_socket_control_message_get_size, "g_socket_control_message_get_size", LIBRARY_GIO);
1978 	Linker.link(g_socket_control_message_serialize, "g_socket_control_message_serialize", LIBRARY_GIO);
1979 
1980 	// gio.SocketListener
1981 
1982 	Linker.link(g_socket_listener_get_type, "g_socket_listener_get_type", LIBRARY_GIO);
1983 	Linker.link(g_socket_listener_new, "g_socket_listener_new", LIBRARY_GIO);
1984 	Linker.link(g_socket_listener_accept, "g_socket_listener_accept", LIBRARY_GIO);
1985 	Linker.link(g_socket_listener_accept_async, "g_socket_listener_accept_async", LIBRARY_GIO);
1986 	Linker.link(g_socket_listener_accept_finish, "g_socket_listener_accept_finish", LIBRARY_GIO);
1987 	Linker.link(g_socket_listener_accept_socket, "g_socket_listener_accept_socket", LIBRARY_GIO);
1988 	Linker.link(g_socket_listener_accept_socket_async, "g_socket_listener_accept_socket_async", LIBRARY_GIO);
1989 	Linker.link(g_socket_listener_accept_socket_finish, "g_socket_listener_accept_socket_finish", LIBRARY_GIO);
1990 	Linker.link(g_socket_listener_add_address, "g_socket_listener_add_address", LIBRARY_GIO);
1991 	Linker.link(g_socket_listener_add_any_inet_port, "g_socket_listener_add_any_inet_port", LIBRARY_GIO);
1992 	Linker.link(g_socket_listener_add_inet_port, "g_socket_listener_add_inet_port", LIBRARY_GIO);
1993 	Linker.link(g_socket_listener_add_socket, "g_socket_listener_add_socket", LIBRARY_GIO);
1994 	Linker.link(g_socket_listener_close, "g_socket_listener_close", LIBRARY_GIO);
1995 	Linker.link(g_socket_listener_set_backlog, "g_socket_listener_set_backlog", LIBRARY_GIO);
1996 
1997 	// gio.SocketService
1998 
1999 	Linker.link(g_socket_service_get_type, "g_socket_service_get_type", LIBRARY_GIO);
2000 	Linker.link(g_socket_service_new, "g_socket_service_new", LIBRARY_GIO);
2001 	Linker.link(g_socket_service_is_active, "g_socket_service_is_active", LIBRARY_GIO);
2002 	Linker.link(g_socket_service_start, "g_socket_service_start", LIBRARY_GIO);
2003 	Linker.link(g_socket_service_stop, "g_socket_service_stop", LIBRARY_GIO);
2004 
2005 	// gio.SrvTarget
2006 
2007 	Linker.link(g_srv_target_get_type, "g_srv_target_get_type", LIBRARY_GIO);
2008 	Linker.link(g_srv_target_new, "g_srv_target_new", LIBRARY_GIO);
2009 	Linker.link(g_srv_target_copy, "g_srv_target_copy", LIBRARY_GIO);
2010 	Linker.link(g_srv_target_free, "g_srv_target_free", LIBRARY_GIO);
2011 	Linker.link(g_srv_target_get_hostname, "g_srv_target_get_hostname", LIBRARY_GIO);
2012 	Linker.link(g_srv_target_get_port, "g_srv_target_get_port", LIBRARY_GIO);
2013 	Linker.link(g_srv_target_get_priority, "g_srv_target_get_priority", LIBRARY_GIO);
2014 	Linker.link(g_srv_target_get_weight, "g_srv_target_get_weight", LIBRARY_GIO);
2015 	Linker.link(g_srv_target_list_sort, "g_srv_target_list_sort", LIBRARY_GIO);
2016 
2017 	// gio.StaticResource
2018 
2019 	Linker.link(g_static_resource_fini, "g_static_resource_fini", LIBRARY_GIO);
2020 	Linker.link(g_static_resource_get_resource, "g_static_resource_get_resource", LIBRARY_GIO);
2021 	Linker.link(g_static_resource_init, "g_static_resource_init", LIBRARY_GIO);
2022 
2023 	// gio.Subprocess
2024 
2025 	Linker.link(g_subprocess_get_type, "g_subprocess_get_type", LIBRARY_GIO);
2026 	Linker.link(g_subprocess_new, "g_subprocess_new", LIBRARY_GIO);
2027 	Linker.link(g_subprocess_newv, "g_subprocess_newv", LIBRARY_GIO);
2028 	Linker.link(g_subprocess_communicate, "g_subprocess_communicate", LIBRARY_GIO);
2029 	Linker.link(g_subprocess_communicate_async, "g_subprocess_communicate_async", LIBRARY_GIO);
2030 	Linker.link(g_subprocess_communicate_finish, "g_subprocess_communicate_finish", LIBRARY_GIO);
2031 	Linker.link(g_subprocess_communicate_utf8, "g_subprocess_communicate_utf8", LIBRARY_GIO);
2032 	Linker.link(g_subprocess_communicate_utf8_async, "g_subprocess_communicate_utf8_async", LIBRARY_GIO);
2033 	Linker.link(g_subprocess_communicate_utf8_finish, "g_subprocess_communicate_utf8_finish", LIBRARY_GIO);
2034 	Linker.link(g_subprocess_force_exit, "g_subprocess_force_exit", LIBRARY_GIO);
2035 	Linker.link(g_subprocess_get_exit_status, "g_subprocess_get_exit_status", LIBRARY_GIO);
2036 	Linker.link(g_subprocess_get_identifier, "g_subprocess_get_identifier", LIBRARY_GIO);
2037 	Linker.link(g_subprocess_get_if_exited, "g_subprocess_get_if_exited", LIBRARY_GIO);
2038 	Linker.link(g_subprocess_get_if_signaled, "g_subprocess_get_if_signaled", LIBRARY_GIO);
2039 	Linker.link(g_subprocess_get_status, "g_subprocess_get_status", LIBRARY_GIO);
2040 	Linker.link(g_subprocess_get_stderr_pipe, "g_subprocess_get_stderr_pipe", LIBRARY_GIO);
2041 	Linker.link(g_subprocess_get_stdin_pipe, "g_subprocess_get_stdin_pipe", LIBRARY_GIO);
2042 	Linker.link(g_subprocess_get_stdout_pipe, "g_subprocess_get_stdout_pipe", LIBRARY_GIO);
2043 	Linker.link(g_subprocess_get_successful, "g_subprocess_get_successful", LIBRARY_GIO);
2044 	Linker.link(g_subprocess_get_term_sig, "g_subprocess_get_term_sig", LIBRARY_GIO);
2045 	Linker.link(g_subprocess_send_signal, "g_subprocess_send_signal", LIBRARY_GIO);
2046 	Linker.link(g_subprocess_wait, "g_subprocess_wait", LIBRARY_GIO);
2047 	Linker.link(g_subprocess_wait_async, "g_subprocess_wait_async", LIBRARY_GIO);
2048 	Linker.link(g_subprocess_wait_check, "g_subprocess_wait_check", LIBRARY_GIO);
2049 	Linker.link(g_subprocess_wait_check_async, "g_subprocess_wait_check_async", LIBRARY_GIO);
2050 	Linker.link(g_subprocess_wait_check_finish, "g_subprocess_wait_check_finish", LIBRARY_GIO);
2051 	Linker.link(g_subprocess_wait_finish, "g_subprocess_wait_finish", LIBRARY_GIO);
2052 
2053 	// gio.SubprocessLauncher
2054 
2055 	Linker.link(g_subprocess_launcher_get_type, "g_subprocess_launcher_get_type", LIBRARY_GIO);
2056 	Linker.link(g_subprocess_launcher_new, "g_subprocess_launcher_new", LIBRARY_GIO);
2057 	Linker.link(g_subprocess_launcher_close, "g_subprocess_launcher_close", LIBRARY_GIO);
2058 	Linker.link(g_subprocess_launcher_getenv, "g_subprocess_launcher_getenv", LIBRARY_GIO);
2059 	Linker.link(g_subprocess_launcher_set_child_setup, "g_subprocess_launcher_set_child_setup", LIBRARY_GIO);
2060 	Linker.link(g_subprocess_launcher_set_cwd, "g_subprocess_launcher_set_cwd", LIBRARY_GIO);
2061 	Linker.link(g_subprocess_launcher_set_environ, "g_subprocess_launcher_set_environ", LIBRARY_GIO);
2062 	Linker.link(g_subprocess_launcher_set_flags, "g_subprocess_launcher_set_flags", LIBRARY_GIO);
2063 	Linker.link(g_subprocess_launcher_set_stderr_file_path, "g_subprocess_launcher_set_stderr_file_path", LIBRARY_GIO);
2064 	Linker.link(g_subprocess_launcher_set_stdin_file_path, "g_subprocess_launcher_set_stdin_file_path", LIBRARY_GIO);
2065 	Linker.link(g_subprocess_launcher_set_stdout_file_path, "g_subprocess_launcher_set_stdout_file_path", LIBRARY_GIO);
2066 	Linker.link(g_subprocess_launcher_setenv, "g_subprocess_launcher_setenv", LIBRARY_GIO);
2067 	Linker.link(g_subprocess_launcher_spawn, "g_subprocess_launcher_spawn", LIBRARY_GIO);
2068 	Linker.link(g_subprocess_launcher_spawnv, "g_subprocess_launcher_spawnv", LIBRARY_GIO);
2069 	Linker.link(g_subprocess_launcher_take_fd, "g_subprocess_launcher_take_fd", LIBRARY_GIO);
2070 	Linker.link(g_subprocess_launcher_take_stderr_fd, "g_subprocess_launcher_take_stderr_fd", LIBRARY_GIO);
2071 	Linker.link(g_subprocess_launcher_take_stdin_fd, "g_subprocess_launcher_take_stdin_fd", LIBRARY_GIO);
2072 	Linker.link(g_subprocess_launcher_take_stdout_fd, "g_subprocess_launcher_take_stdout_fd", LIBRARY_GIO);
2073 	Linker.link(g_subprocess_launcher_unsetenv, "g_subprocess_launcher_unsetenv", LIBRARY_GIO);
2074 
2075 	// gio.Task
2076 
2077 	Linker.link(g_task_get_type, "g_task_get_type", LIBRARY_GIO);
2078 	Linker.link(g_task_new, "g_task_new", LIBRARY_GIO);
2079 	Linker.link(g_task_is_valid, "g_task_is_valid", LIBRARY_GIO);
2080 	Linker.link(g_task_report_error, "g_task_report_error", LIBRARY_GIO);
2081 	Linker.link(g_task_report_new_error, "g_task_report_new_error", LIBRARY_GIO);
2082 	Linker.link(g_task_attach_source, "g_task_attach_source", LIBRARY_GIO);
2083 	Linker.link(g_task_get_cancellable, "g_task_get_cancellable", LIBRARY_GIO);
2084 	Linker.link(g_task_get_check_cancellable, "g_task_get_check_cancellable", LIBRARY_GIO);
2085 	Linker.link(g_task_get_completed, "g_task_get_completed", LIBRARY_GIO);
2086 	Linker.link(g_task_get_context, "g_task_get_context", LIBRARY_GIO);
2087 	Linker.link(g_task_get_name, "g_task_get_name", LIBRARY_GIO);
2088 	Linker.link(g_task_get_priority, "g_task_get_priority", LIBRARY_GIO);
2089 	Linker.link(g_task_get_return_on_cancel, "g_task_get_return_on_cancel", LIBRARY_GIO);
2090 	Linker.link(g_task_get_source_object, "g_task_get_source_object", LIBRARY_GIO);
2091 	Linker.link(g_task_get_source_tag, "g_task_get_source_tag", LIBRARY_GIO);
2092 	Linker.link(g_task_get_task_data, "g_task_get_task_data", LIBRARY_GIO);
2093 	Linker.link(g_task_had_error, "g_task_had_error", LIBRARY_GIO);
2094 	Linker.link(g_task_propagate_boolean, "g_task_propagate_boolean", LIBRARY_GIO);
2095 	Linker.link(g_task_propagate_int, "g_task_propagate_int", LIBRARY_GIO);
2096 	Linker.link(g_task_propagate_pointer, "g_task_propagate_pointer", LIBRARY_GIO);
2097 	Linker.link(g_task_propagate_value, "g_task_propagate_value", LIBRARY_GIO);
2098 	Linker.link(g_task_return_boolean, "g_task_return_boolean", LIBRARY_GIO);
2099 	Linker.link(g_task_return_error, "g_task_return_error", LIBRARY_GIO);
2100 	Linker.link(g_task_return_error_if_cancelled, "g_task_return_error_if_cancelled", LIBRARY_GIO);
2101 	Linker.link(g_task_return_int, "g_task_return_int", LIBRARY_GIO);
2102 	Linker.link(g_task_return_new_error, "g_task_return_new_error", LIBRARY_GIO);
2103 	Linker.link(g_task_return_pointer, "g_task_return_pointer", LIBRARY_GIO);
2104 	Linker.link(g_task_return_value, "g_task_return_value", LIBRARY_GIO);
2105 	Linker.link(g_task_run_in_thread, "g_task_run_in_thread", LIBRARY_GIO);
2106 	Linker.link(g_task_run_in_thread_sync, "g_task_run_in_thread_sync", LIBRARY_GIO);
2107 	Linker.link(g_task_set_check_cancellable, "g_task_set_check_cancellable", LIBRARY_GIO);
2108 	Linker.link(g_task_set_name, "g_task_set_name", LIBRARY_GIO);
2109 	Linker.link(g_task_set_priority, "g_task_set_priority", LIBRARY_GIO);
2110 	Linker.link(g_task_set_return_on_cancel, "g_task_set_return_on_cancel", LIBRARY_GIO);
2111 	Linker.link(g_task_set_source_tag, "g_task_set_source_tag", LIBRARY_GIO);
2112 	Linker.link(g_task_set_task_data, "g_task_set_task_data", LIBRARY_GIO);
2113 
2114 	// gio.TcpConnection
2115 
2116 	Linker.link(g_tcp_connection_get_type, "g_tcp_connection_get_type", LIBRARY_GIO);
2117 	Linker.link(g_tcp_connection_get_graceful_disconnect, "g_tcp_connection_get_graceful_disconnect", LIBRARY_GIO);
2118 	Linker.link(g_tcp_connection_set_graceful_disconnect, "g_tcp_connection_set_graceful_disconnect", LIBRARY_GIO);
2119 
2120 	// gio.TcpWrapperConnection
2121 
2122 	Linker.link(g_tcp_wrapper_connection_get_type, "g_tcp_wrapper_connection_get_type", LIBRARY_GIO);
2123 	Linker.link(g_tcp_wrapper_connection_new, "g_tcp_wrapper_connection_new", LIBRARY_GIO);
2124 	Linker.link(g_tcp_wrapper_connection_get_base_io_stream, "g_tcp_wrapper_connection_get_base_io_stream", LIBRARY_GIO);
2125 
2126 	// gio.TestDBus
2127 
2128 	Linker.link(g_test_dbus_get_type, "g_test_dbus_get_type", LIBRARY_GIO);
2129 	Linker.link(g_test_dbus_new, "g_test_dbus_new", LIBRARY_GIO);
2130 	Linker.link(g_test_dbus_unset, "g_test_dbus_unset", LIBRARY_GIO);
2131 	Linker.link(g_test_dbus_add_service_dir, "g_test_dbus_add_service_dir", LIBRARY_GIO);
2132 	Linker.link(g_test_dbus_down, "g_test_dbus_down", LIBRARY_GIO);
2133 	Linker.link(g_test_dbus_get_bus_address, "g_test_dbus_get_bus_address", LIBRARY_GIO);
2134 	Linker.link(g_test_dbus_get_flags, "g_test_dbus_get_flags", LIBRARY_GIO);
2135 	Linker.link(g_test_dbus_stop, "g_test_dbus_stop", LIBRARY_GIO);
2136 	Linker.link(g_test_dbus_up, "g_test_dbus_up", LIBRARY_GIO);
2137 
2138 	// gio.ThemedIcon
2139 
2140 	Linker.link(g_themed_icon_get_type, "g_themed_icon_get_type", LIBRARY_GIO);
2141 	Linker.link(g_themed_icon_new, "g_themed_icon_new", LIBRARY_GIO);
2142 	Linker.link(g_themed_icon_new_from_names, "g_themed_icon_new_from_names", LIBRARY_GIO);
2143 	Linker.link(g_themed_icon_new_with_default_fallbacks, "g_themed_icon_new_with_default_fallbacks", LIBRARY_GIO);
2144 	Linker.link(g_themed_icon_append_name, "g_themed_icon_append_name", LIBRARY_GIO);
2145 	Linker.link(g_themed_icon_get_names, "g_themed_icon_get_names", LIBRARY_GIO);
2146 	Linker.link(g_themed_icon_prepend_name, "g_themed_icon_prepend_name", LIBRARY_GIO);
2147 
2148 	// gio.ThreadedSocketService
2149 
2150 	Linker.link(g_threaded_socket_service_get_type, "g_threaded_socket_service_get_type", LIBRARY_GIO);
2151 	Linker.link(g_threaded_socket_service_new, "g_threaded_socket_service_new", LIBRARY_GIO);
2152 
2153 	// gio.TlsBackend
2154 
2155 	Linker.link(g_tls_backend_get_type, "g_tls_backend_get_type", LIBRARY_GIO);
2156 	Linker.link(g_tls_backend_get_default, "g_tls_backend_get_default", LIBRARY_GIO);
2157 	Linker.link(g_tls_backend_get_certificate_type, "g_tls_backend_get_certificate_type", LIBRARY_GIO);
2158 	Linker.link(g_tls_backend_get_client_connection_type, "g_tls_backend_get_client_connection_type", LIBRARY_GIO);
2159 	Linker.link(g_tls_backend_get_default_database, "g_tls_backend_get_default_database", LIBRARY_GIO);
2160 	Linker.link(g_tls_backend_get_dtls_client_connection_type, "g_tls_backend_get_dtls_client_connection_type", LIBRARY_GIO);
2161 	Linker.link(g_tls_backend_get_dtls_server_connection_type, "g_tls_backend_get_dtls_server_connection_type", LIBRARY_GIO);
2162 	Linker.link(g_tls_backend_get_file_database_type, "g_tls_backend_get_file_database_type", LIBRARY_GIO);
2163 	Linker.link(g_tls_backend_get_server_connection_type, "g_tls_backend_get_server_connection_type", LIBRARY_GIO);
2164 	Linker.link(g_tls_backend_set_default_database, "g_tls_backend_set_default_database", LIBRARY_GIO);
2165 	Linker.link(g_tls_backend_supports_dtls, "g_tls_backend_supports_dtls", LIBRARY_GIO);
2166 	Linker.link(g_tls_backend_supports_tls, "g_tls_backend_supports_tls", LIBRARY_GIO);
2167 
2168 	// gio.TlsCertificate
2169 
2170 	Linker.link(g_tls_certificate_get_type, "g_tls_certificate_get_type", LIBRARY_GIO);
2171 	Linker.link(g_tls_certificate_new_from_file, "g_tls_certificate_new_from_file", LIBRARY_GIO);
2172 	Linker.link(g_tls_certificate_new_from_file_with_password, "g_tls_certificate_new_from_file_with_password", LIBRARY_GIO);
2173 	Linker.link(g_tls_certificate_new_from_files, "g_tls_certificate_new_from_files", LIBRARY_GIO);
2174 	Linker.link(g_tls_certificate_new_from_pem, "g_tls_certificate_new_from_pem", LIBRARY_GIO);
2175 	Linker.link(g_tls_certificate_new_from_pkcs11_uris, "g_tls_certificate_new_from_pkcs11_uris", LIBRARY_GIO);
2176 	Linker.link(g_tls_certificate_new_from_pkcs12, "g_tls_certificate_new_from_pkcs12", LIBRARY_GIO);
2177 	Linker.link(g_tls_certificate_list_new_from_file, "g_tls_certificate_list_new_from_file", LIBRARY_GIO);
2178 	Linker.link(g_tls_certificate_get_dns_names, "g_tls_certificate_get_dns_names", LIBRARY_GIO);
2179 	Linker.link(g_tls_certificate_get_ip_addresses, "g_tls_certificate_get_ip_addresses", LIBRARY_GIO);
2180 	Linker.link(g_tls_certificate_get_issuer, "g_tls_certificate_get_issuer", LIBRARY_GIO);
2181 	Linker.link(g_tls_certificate_get_issuer_name, "g_tls_certificate_get_issuer_name", LIBRARY_GIO);
2182 	Linker.link(g_tls_certificate_get_not_valid_after, "g_tls_certificate_get_not_valid_after", LIBRARY_GIO);
2183 	Linker.link(g_tls_certificate_get_not_valid_before, "g_tls_certificate_get_not_valid_before", LIBRARY_GIO);
2184 	Linker.link(g_tls_certificate_get_subject_name, "g_tls_certificate_get_subject_name", LIBRARY_GIO);
2185 	Linker.link(g_tls_certificate_is_same, "g_tls_certificate_is_same", LIBRARY_GIO);
2186 	Linker.link(g_tls_certificate_verify, "g_tls_certificate_verify", LIBRARY_GIO);
2187 
2188 	// gio.TlsClientConnection
2189 
2190 	Linker.link(g_tls_client_connection_get_type, "g_tls_client_connection_get_type", LIBRARY_GIO);
2191 	Linker.link(g_tls_client_connection_new, "g_tls_client_connection_new", LIBRARY_GIO);
2192 	Linker.link(g_tls_client_connection_copy_session_state, "g_tls_client_connection_copy_session_state", LIBRARY_GIO);
2193 	Linker.link(g_tls_client_connection_get_accepted_cas, "g_tls_client_connection_get_accepted_cas", LIBRARY_GIO);
2194 	Linker.link(g_tls_client_connection_get_server_identity, "g_tls_client_connection_get_server_identity", LIBRARY_GIO);
2195 	Linker.link(g_tls_client_connection_get_use_ssl3, "g_tls_client_connection_get_use_ssl3", LIBRARY_GIO);
2196 	Linker.link(g_tls_client_connection_get_validation_flags, "g_tls_client_connection_get_validation_flags", LIBRARY_GIO);
2197 	Linker.link(g_tls_client_connection_set_server_identity, "g_tls_client_connection_set_server_identity", LIBRARY_GIO);
2198 	Linker.link(g_tls_client_connection_set_use_ssl3, "g_tls_client_connection_set_use_ssl3", LIBRARY_GIO);
2199 	Linker.link(g_tls_client_connection_set_validation_flags, "g_tls_client_connection_set_validation_flags", LIBRARY_GIO);
2200 
2201 	// gio.TlsConnection
2202 
2203 	Linker.link(g_tls_connection_get_type, "g_tls_connection_get_type", LIBRARY_GIO);
2204 	Linker.link(g_tls_connection_emit_accept_certificate, "g_tls_connection_emit_accept_certificate", LIBRARY_GIO);
2205 	Linker.link(g_tls_connection_get_certificate, "g_tls_connection_get_certificate", LIBRARY_GIO);
2206 	Linker.link(g_tls_connection_get_channel_binding_data, "g_tls_connection_get_channel_binding_data", LIBRARY_GIO);
2207 	Linker.link(g_tls_connection_get_ciphersuite_name, "g_tls_connection_get_ciphersuite_name", LIBRARY_GIO);
2208 	Linker.link(g_tls_connection_get_database, "g_tls_connection_get_database", LIBRARY_GIO);
2209 	Linker.link(g_tls_connection_get_interaction, "g_tls_connection_get_interaction", LIBRARY_GIO);
2210 	Linker.link(g_tls_connection_get_negotiated_protocol, "g_tls_connection_get_negotiated_protocol", LIBRARY_GIO);
2211 	Linker.link(g_tls_connection_get_peer_certificate, "g_tls_connection_get_peer_certificate", LIBRARY_GIO);
2212 	Linker.link(g_tls_connection_get_peer_certificate_errors, "g_tls_connection_get_peer_certificate_errors", LIBRARY_GIO);
2213 	Linker.link(g_tls_connection_get_protocol_version, "g_tls_connection_get_protocol_version", LIBRARY_GIO);
2214 	Linker.link(g_tls_connection_get_rehandshake_mode, "g_tls_connection_get_rehandshake_mode", LIBRARY_GIO);
2215 	Linker.link(g_tls_connection_get_require_close_notify, "g_tls_connection_get_require_close_notify", LIBRARY_GIO);
2216 	Linker.link(g_tls_connection_get_use_system_certdb, "g_tls_connection_get_use_system_certdb", LIBRARY_GIO);
2217 	Linker.link(g_tls_connection_handshake, "g_tls_connection_handshake", LIBRARY_GIO);
2218 	Linker.link(g_tls_connection_handshake_async, "g_tls_connection_handshake_async", LIBRARY_GIO);
2219 	Linker.link(g_tls_connection_handshake_finish, "g_tls_connection_handshake_finish", LIBRARY_GIO);
2220 	Linker.link(g_tls_connection_set_advertised_protocols, "g_tls_connection_set_advertised_protocols", LIBRARY_GIO);
2221 	Linker.link(g_tls_connection_set_certificate, "g_tls_connection_set_certificate", LIBRARY_GIO);
2222 	Linker.link(g_tls_connection_set_database, "g_tls_connection_set_database", LIBRARY_GIO);
2223 	Linker.link(g_tls_connection_set_interaction, "g_tls_connection_set_interaction", LIBRARY_GIO);
2224 	Linker.link(g_tls_connection_set_rehandshake_mode, "g_tls_connection_set_rehandshake_mode", LIBRARY_GIO);
2225 	Linker.link(g_tls_connection_set_require_close_notify, "g_tls_connection_set_require_close_notify", LIBRARY_GIO);
2226 	Linker.link(g_tls_connection_set_use_system_certdb, "g_tls_connection_set_use_system_certdb", LIBRARY_GIO);
2227 
2228 	// gio.TlsDatabase
2229 
2230 	Linker.link(g_tls_database_get_type, "g_tls_database_get_type", LIBRARY_GIO);
2231 	Linker.link(g_tls_database_create_certificate_handle, "g_tls_database_create_certificate_handle", LIBRARY_GIO);
2232 	Linker.link(g_tls_database_lookup_certificate_for_handle, "g_tls_database_lookup_certificate_for_handle", LIBRARY_GIO);
2233 	Linker.link(g_tls_database_lookup_certificate_for_handle_async, "g_tls_database_lookup_certificate_for_handle_async", LIBRARY_GIO);
2234 	Linker.link(g_tls_database_lookup_certificate_for_handle_finish, "g_tls_database_lookup_certificate_for_handle_finish", LIBRARY_GIO);
2235 	Linker.link(g_tls_database_lookup_certificate_issuer, "g_tls_database_lookup_certificate_issuer", LIBRARY_GIO);
2236 	Linker.link(g_tls_database_lookup_certificate_issuer_async, "g_tls_database_lookup_certificate_issuer_async", LIBRARY_GIO);
2237 	Linker.link(g_tls_database_lookup_certificate_issuer_finish, "g_tls_database_lookup_certificate_issuer_finish", LIBRARY_GIO);
2238 	Linker.link(g_tls_database_lookup_certificates_issued_by, "g_tls_database_lookup_certificates_issued_by", LIBRARY_GIO);
2239 	Linker.link(g_tls_database_lookup_certificates_issued_by_async, "g_tls_database_lookup_certificates_issued_by_async", LIBRARY_GIO);
2240 	Linker.link(g_tls_database_lookup_certificates_issued_by_finish, "g_tls_database_lookup_certificates_issued_by_finish", LIBRARY_GIO);
2241 	Linker.link(g_tls_database_verify_chain, "g_tls_database_verify_chain", LIBRARY_GIO);
2242 	Linker.link(g_tls_database_verify_chain_async, "g_tls_database_verify_chain_async", LIBRARY_GIO);
2243 	Linker.link(g_tls_database_verify_chain_finish, "g_tls_database_verify_chain_finish", LIBRARY_GIO);
2244 
2245 	// gio.TlsFileDatabase
2246 
2247 	Linker.link(g_tls_file_database_get_type, "g_tls_file_database_get_type", LIBRARY_GIO);
2248 	Linker.link(g_tls_file_database_new, "g_tls_file_database_new", LIBRARY_GIO);
2249 
2250 	// gio.TlsInteraction
2251 
2252 	Linker.link(g_tls_interaction_get_type, "g_tls_interaction_get_type", LIBRARY_GIO);
2253 	Linker.link(g_tls_interaction_ask_password, "g_tls_interaction_ask_password", LIBRARY_GIO);
2254 	Linker.link(g_tls_interaction_ask_password_async, "g_tls_interaction_ask_password_async", LIBRARY_GIO);
2255 	Linker.link(g_tls_interaction_ask_password_finish, "g_tls_interaction_ask_password_finish", LIBRARY_GIO);
2256 	Linker.link(g_tls_interaction_invoke_ask_password, "g_tls_interaction_invoke_ask_password", LIBRARY_GIO);
2257 	Linker.link(g_tls_interaction_invoke_request_certificate, "g_tls_interaction_invoke_request_certificate", LIBRARY_GIO);
2258 	Linker.link(g_tls_interaction_request_certificate, "g_tls_interaction_request_certificate", LIBRARY_GIO);
2259 	Linker.link(g_tls_interaction_request_certificate_async, "g_tls_interaction_request_certificate_async", LIBRARY_GIO);
2260 	Linker.link(g_tls_interaction_request_certificate_finish, "g_tls_interaction_request_certificate_finish", LIBRARY_GIO);
2261 
2262 	// gio.TlsPassword
2263 
2264 	Linker.link(g_tls_password_get_type, "g_tls_password_get_type", LIBRARY_GIO);
2265 	Linker.link(g_tls_password_new, "g_tls_password_new", LIBRARY_GIO);
2266 	Linker.link(g_tls_password_get_description, "g_tls_password_get_description", LIBRARY_GIO);
2267 	Linker.link(g_tls_password_get_flags, "g_tls_password_get_flags", LIBRARY_GIO);
2268 	Linker.link(g_tls_password_get_value, "g_tls_password_get_value", LIBRARY_GIO);
2269 	Linker.link(g_tls_password_get_warning, "g_tls_password_get_warning", LIBRARY_GIO);
2270 	Linker.link(g_tls_password_set_description, "g_tls_password_set_description", LIBRARY_GIO);
2271 	Linker.link(g_tls_password_set_flags, "g_tls_password_set_flags", LIBRARY_GIO);
2272 	Linker.link(g_tls_password_set_value, "g_tls_password_set_value", LIBRARY_GIO);
2273 	Linker.link(g_tls_password_set_value_full, "g_tls_password_set_value_full", LIBRARY_GIO);
2274 	Linker.link(g_tls_password_set_warning, "g_tls_password_set_warning", LIBRARY_GIO);
2275 
2276 	// gio.TlsServerConnection
2277 
2278 	Linker.link(g_tls_server_connection_get_type, "g_tls_server_connection_get_type", LIBRARY_GIO);
2279 	Linker.link(g_tls_server_connection_new, "g_tls_server_connection_new", LIBRARY_GIO);
2280 
2281 	// gio.UnixConnection
2282 
2283 	Linker.link(g_unix_connection_get_type, "g_unix_connection_get_type", LIBRARY_GIO);
2284 	Linker.link(g_unix_connection_receive_credentials, "g_unix_connection_receive_credentials", LIBRARY_GIO);
2285 	Linker.link(g_unix_connection_receive_credentials_async, "g_unix_connection_receive_credentials_async", LIBRARY_GIO);
2286 	Linker.link(g_unix_connection_receive_credentials_finish, "g_unix_connection_receive_credentials_finish", LIBRARY_GIO);
2287 	Linker.link(g_unix_connection_receive_fd, "g_unix_connection_receive_fd", LIBRARY_GIO);
2288 	Linker.link(g_unix_connection_send_credentials, "g_unix_connection_send_credentials", LIBRARY_GIO);
2289 	Linker.link(g_unix_connection_send_credentials_async, "g_unix_connection_send_credentials_async", LIBRARY_GIO);
2290 	Linker.link(g_unix_connection_send_credentials_finish, "g_unix_connection_send_credentials_finish", LIBRARY_GIO);
2291 	Linker.link(g_unix_connection_send_fd, "g_unix_connection_send_fd", LIBRARY_GIO);
2292 
2293 	// gio.UnixCredentialsMessage
2294 
2295 	Linker.link(g_unix_credentials_message_get_type, "g_unix_credentials_message_get_type", LIBRARY_GIO);
2296 	Linker.link(g_unix_credentials_message_new, "g_unix_credentials_message_new", LIBRARY_GIO);
2297 	Linker.link(g_unix_credentials_message_new_with_credentials, "g_unix_credentials_message_new_with_credentials", LIBRARY_GIO);
2298 	Linker.link(g_unix_credentials_message_is_supported, "g_unix_credentials_message_is_supported", LIBRARY_GIO);
2299 	Linker.link(g_unix_credentials_message_get_credentials, "g_unix_credentials_message_get_credentials", LIBRARY_GIO);
2300 
2301 	// gio.UnixFDList
2302 
2303 	Linker.link(g_unix_fd_list_get_type, "g_unix_fd_list_get_type", LIBRARY_GIO);
2304 	Linker.link(g_unix_fd_list_new, "g_unix_fd_list_new", LIBRARY_GIO);
2305 	Linker.link(g_unix_fd_list_new_from_array, "g_unix_fd_list_new_from_array", LIBRARY_GIO);
2306 	Linker.link(g_unix_fd_list_append, "g_unix_fd_list_append", LIBRARY_GIO);
2307 	Linker.link(g_unix_fd_list_get, "g_unix_fd_list_get", LIBRARY_GIO);
2308 	Linker.link(g_unix_fd_list_get_length, "g_unix_fd_list_get_length", LIBRARY_GIO);
2309 	Linker.link(g_unix_fd_list_peek_fds, "g_unix_fd_list_peek_fds", LIBRARY_GIO);
2310 	Linker.link(g_unix_fd_list_steal_fds, "g_unix_fd_list_steal_fds", LIBRARY_GIO);
2311 
2312 	// gio.UnixFDMessage
2313 
2314 	Linker.link(g_unix_fd_message_get_type, "g_unix_fd_message_get_type", LIBRARY_GIO);
2315 	Linker.link(g_unix_fd_message_new, "g_unix_fd_message_new", LIBRARY_GIO);
2316 	Linker.link(g_unix_fd_message_new_with_fd_list, "g_unix_fd_message_new_with_fd_list", LIBRARY_GIO);
2317 	Linker.link(g_unix_fd_message_append_fd, "g_unix_fd_message_append_fd", LIBRARY_GIO);
2318 	Linker.link(g_unix_fd_message_get_fd_list, "g_unix_fd_message_get_fd_list", LIBRARY_GIO);
2319 	Linker.link(g_unix_fd_message_steal_fds, "g_unix_fd_message_steal_fds", LIBRARY_GIO);
2320 
2321 	// gio.UnixInputStream
2322 
2323 	Linker.link(g_unix_input_stream_get_type, "g_unix_input_stream_get_type", LIBRARY_GIO);
2324 	Linker.link(g_unix_input_stream_new, "g_unix_input_stream_new", LIBRARY_GIO);
2325 	Linker.link(g_unix_input_stream_get_close_fd, "g_unix_input_stream_get_close_fd", LIBRARY_GIO);
2326 	Linker.link(g_unix_input_stream_get_fd, "g_unix_input_stream_get_fd", LIBRARY_GIO);
2327 	Linker.link(g_unix_input_stream_set_close_fd, "g_unix_input_stream_set_close_fd", LIBRARY_GIO);
2328 
2329 	// gio.UnixMountEntry
2330 
2331 	Linker.link(g_unix_mount_entry_get_type, "g_unix_mount_entry_get_type", LIBRARY_GIO);
2332 	Linker.link(g_unix_is_mount_path_system_internal, "g_unix_is_mount_path_system_internal", LIBRARY_GIO);
2333 	Linker.link(g_unix_mount_at, "g_unix_mount_at", LIBRARY_GIO);
2334 	Linker.link(g_unix_mount_compare, "g_unix_mount_compare", LIBRARY_GIO);
2335 	Linker.link(g_unix_mount_free, "g_unix_mount_free", LIBRARY_GIO);
2336 	Linker.link(g_unix_mount_get_device_path, "g_unix_mount_get_device_path", LIBRARY_GIO);
2337 	Linker.link(g_unix_mount_get_fs_type, "g_unix_mount_get_fs_type", LIBRARY_GIO);
2338 	Linker.link(g_unix_mount_get_mount_path, "g_unix_mount_get_mount_path", LIBRARY_GIO);
2339 	Linker.link(g_unix_mount_guess_can_eject, "g_unix_mount_guess_can_eject", LIBRARY_GIO);
2340 	Linker.link(g_unix_mount_guess_icon, "g_unix_mount_guess_icon", LIBRARY_GIO);
2341 	Linker.link(g_unix_mount_guess_name, "g_unix_mount_guess_name", LIBRARY_GIO);
2342 	Linker.link(g_unix_mount_guess_should_display, "g_unix_mount_guess_should_display", LIBRARY_GIO);
2343 	Linker.link(g_unix_mount_guess_symbolic_icon, "g_unix_mount_guess_symbolic_icon", LIBRARY_GIO);
2344 	Linker.link(g_unix_mount_is_readonly, "g_unix_mount_is_readonly", LIBRARY_GIO);
2345 	Linker.link(g_unix_mount_is_system_internal, "g_unix_mount_is_system_internal", LIBRARY_GIO);
2346 	Linker.link(g_unix_mount_points_changed_since, "g_unix_mount_points_changed_since", LIBRARY_GIO);
2347 	Linker.link(g_unix_mount_points_get, "g_unix_mount_points_get", LIBRARY_GIO);
2348 	Linker.link(g_unix_mounts_changed_since, "g_unix_mounts_changed_since", LIBRARY_GIO);
2349 	Linker.link(g_unix_mounts_get, "g_unix_mounts_get", LIBRARY_GIO);
2350 	Linker.link(g_unix_mount_copy, "g_unix_mount_copy", LIBRARY_GIO);
2351 	Linker.link(g_unix_mount_for, "g_unix_mount_for", LIBRARY_GIO);
2352 	Linker.link(g_unix_mount_get_options, "g_unix_mount_get_options", LIBRARY_GIO);
2353 	Linker.link(g_unix_mount_get_root_path, "g_unix_mount_get_root_path", LIBRARY_GIO);
2354 
2355 	// gio.UnixMountMonitor
2356 
2357 	Linker.link(g_unix_mount_monitor_get_type, "g_unix_mount_monitor_get_type", LIBRARY_GIO);
2358 	Linker.link(g_unix_mount_monitor_new, "g_unix_mount_monitor_new", LIBRARY_GIO);
2359 	Linker.link(g_unix_mount_monitor_get, "g_unix_mount_monitor_get", LIBRARY_GIO);
2360 	Linker.link(g_unix_mount_monitor_set_rate_limit, "g_unix_mount_monitor_set_rate_limit", LIBRARY_GIO);
2361 
2362 	// gio.UnixMountPoint
2363 
2364 	Linker.link(g_unix_mount_point_get_type, "g_unix_mount_point_get_type", LIBRARY_GIO);
2365 	Linker.link(g_unix_mount_point_compare, "g_unix_mount_point_compare", LIBRARY_GIO);
2366 	Linker.link(g_unix_mount_point_copy, "g_unix_mount_point_copy", LIBRARY_GIO);
2367 	Linker.link(g_unix_mount_point_free, "g_unix_mount_point_free", LIBRARY_GIO);
2368 	Linker.link(g_unix_mount_point_get_device_path, "g_unix_mount_point_get_device_path", LIBRARY_GIO);
2369 	Linker.link(g_unix_mount_point_get_fs_type, "g_unix_mount_point_get_fs_type", LIBRARY_GIO);
2370 	Linker.link(g_unix_mount_point_get_mount_path, "g_unix_mount_point_get_mount_path", LIBRARY_GIO);
2371 	Linker.link(g_unix_mount_point_get_options, "g_unix_mount_point_get_options", LIBRARY_GIO);
2372 	Linker.link(g_unix_mount_point_guess_can_eject, "g_unix_mount_point_guess_can_eject", LIBRARY_GIO);
2373 	Linker.link(g_unix_mount_point_guess_icon, "g_unix_mount_point_guess_icon", LIBRARY_GIO);
2374 	Linker.link(g_unix_mount_point_guess_name, "g_unix_mount_point_guess_name", LIBRARY_GIO);
2375 	Linker.link(g_unix_mount_point_guess_symbolic_icon, "g_unix_mount_point_guess_symbolic_icon", LIBRARY_GIO);
2376 	Linker.link(g_unix_mount_point_is_loopback, "g_unix_mount_point_is_loopback", LIBRARY_GIO);
2377 	Linker.link(g_unix_mount_point_is_readonly, "g_unix_mount_point_is_readonly", LIBRARY_GIO);
2378 	Linker.link(g_unix_mount_point_is_user_mountable, "g_unix_mount_point_is_user_mountable", LIBRARY_GIO);
2379 	Linker.link(g_unix_mount_point_at, "g_unix_mount_point_at", LIBRARY_GIO);
2380 
2381 	// gio.UnixOutputStream
2382 
2383 	Linker.link(g_unix_output_stream_get_type, "g_unix_output_stream_get_type", LIBRARY_GIO);
2384 	Linker.link(g_unix_output_stream_new, "g_unix_output_stream_new", LIBRARY_GIO);
2385 	Linker.link(g_unix_output_stream_get_close_fd, "g_unix_output_stream_get_close_fd", LIBRARY_GIO);
2386 	Linker.link(g_unix_output_stream_get_fd, "g_unix_output_stream_get_fd", LIBRARY_GIO);
2387 	Linker.link(g_unix_output_stream_set_close_fd, "g_unix_output_stream_set_close_fd", LIBRARY_GIO);
2388 
2389 	// gio.UnixSocketAddress
2390 
2391 	Linker.link(g_unix_socket_address_get_type, "g_unix_socket_address_get_type", LIBRARY_GIO);
2392 	Linker.link(g_unix_socket_address_new, "g_unix_socket_address_new", LIBRARY_GIO);
2393 	Linker.link(g_unix_socket_address_new_abstract, "g_unix_socket_address_new_abstract", LIBRARY_GIO);
2394 	Linker.link(g_unix_socket_address_new_with_type, "g_unix_socket_address_new_with_type", LIBRARY_GIO);
2395 	Linker.link(g_unix_socket_address_abstract_names_supported, "g_unix_socket_address_abstract_names_supported", LIBRARY_GIO);
2396 	Linker.link(g_unix_socket_address_get_address_type, "g_unix_socket_address_get_address_type", LIBRARY_GIO);
2397 	Linker.link(g_unix_socket_address_get_is_abstract, "g_unix_socket_address_get_is_abstract", LIBRARY_GIO);
2398 	Linker.link(g_unix_socket_address_get_path, "g_unix_socket_address_get_path", LIBRARY_GIO);
2399 	Linker.link(g_unix_socket_address_get_path_len, "g_unix_socket_address_get_path_len", LIBRARY_GIO);
2400 
2401 	// gio.Vfs
2402 
2403 	Linker.link(g_vfs_get_type, "g_vfs_get_type", LIBRARY_GIO);
2404 	Linker.link(g_vfs_get_default, "g_vfs_get_default", LIBRARY_GIO);
2405 	Linker.link(g_vfs_get_local, "g_vfs_get_local", LIBRARY_GIO);
2406 	Linker.link(g_vfs_get_file_for_path, "g_vfs_get_file_for_path", LIBRARY_GIO);
2407 	Linker.link(g_vfs_get_file_for_uri, "g_vfs_get_file_for_uri", LIBRARY_GIO);
2408 	Linker.link(g_vfs_get_supported_uri_schemes, "g_vfs_get_supported_uri_schemes", LIBRARY_GIO);
2409 	Linker.link(g_vfs_is_active, "g_vfs_is_active", LIBRARY_GIO);
2410 	Linker.link(g_vfs_parse_name, "g_vfs_parse_name", LIBRARY_GIO);
2411 	Linker.link(g_vfs_register_uri_scheme, "g_vfs_register_uri_scheme", LIBRARY_GIO);
2412 	Linker.link(g_vfs_unregister_uri_scheme, "g_vfs_unregister_uri_scheme", LIBRARY_GIO);
2413 
2414 	// gio.Volume
2415 
2416 	Linker.link(g_volume_get_type, "g_volume_get_type", LIBRARY_GIO);
2417 	Linker.link(g_volume_can_eject, "g_volume_can_eject", LIBRARY_GIO);
2418 	Linker.link(g_volume_can_mount, "g_volume_can_mount", LIBRARY_GIO);
2419 	Linker.link(g_volume_eject, "g_volume_eject", LIBRARY_GIO);
2420 	Linker.link(g_volume_eject_finish, "g_volume_eject_finish", LIBRARY_GIO);
2421 	Linker.link(g_volume_eject_with_operation, "g_volume_eject_with_operation", LIBRARY_GIO);
2422 	Linker.link(g_volume_eject_with_operation_finish, "g_volume_eject_with_operation_finish", LIBRARY_GIO);
2423 	Linker.link(g_volume_enumerate_identifiers, "g_volume_enumerate_identifiers", LIBRARY_GIO);
2424 	Linker.link(g_volume_get_activation_root, "g_volume_get_activation_root", LIBRARY_GIO);
2425 	Linker.link(g_volume_get_drive, "g_volume_get_drive", LIBRARY_GIO);
2426 	Linker.link(g_volume_get_icon, "g_volume_get_icon", LIBRARY_GIO);
2427 	Linker.link(g_volume_get_identifier, "g_volume_get_identifier", LIBRARY_GIO);
2428 	Linker.link(g_volume_get_mount, "g_volume_get_mount", LIBRARY_GIO);
2429 	Linker.link(g_volume_get_name, "g_volume_get_name", LIBRARY_GIO);
2430 	Linker.link(g_volume_get_sort_key, "g_volume_get_sort_key", LIBRARY_GIO);
2431 	Linker.link(g_volume_get_symbolic_icon, "g_volume_get_symbolic_icon", LIBRARY_GIO);
2432 	Linker.link(g_volume_get_uuid, "g_volume_get_uuid", LIBRARY_GIO);
2433 	Linker.link(g_volume_mount, "g_volume_mount", LIBRARY_GIO);
2434 	Linker.link(g_volume_mount_finish, "g_volume_mount_finish", LIBRARY_GIO);
2435 	Linker.link(g_volume_should_automount, "g_volume_should_automount", LIBRARY_GIO);
2436 
2437 	// gio.VolumeMonitor
2438 
2439 	Linker.link(g_volume_monitor_get_type, "g_volume_monitor_get_type", LIBRARY_GIO);
2440 	Linker.link(g_volume_monitor_adopt_orphan_mount, "g_volume_monitor_adopt_orphan_mount", LIBRARY_GIO);
2441 	Linker.link(g_volume_monitor_get, "g_volume_monitor_get", LIBRARY_GIO);
2442 	Linker.link(g_volume_monitor_get_connected_drives, "g_volume_monitor_get_connected_drives", LIBRARY_GIO);
2443 	Linker.link(g_volume_monitor_get_mount_for_uuid, "g_volume_monitor_get_mount_for_uuid", LIBRARY_GIO);
2444 	Linker.link(g_volume_monitor_get_mounts, "g_volume_monitor_get_mounts", LIBRARY_GIO);
2445 	Linker.link(g_volume_monitor_get_volume_for_uuid, "g_volume_monitor_get_volume_for_uuid", LIBRARY_GIO);
2446 	Linker.link(g_volume_monitor_get_volumes, "g_volume_monitor_get_volumes", LIBRARY_GIO);
2447 
2448 	// gio.ZlibCompressor
2449 
2450 	Linker.link(g_zlib_compressor_get_type, "g_zlib_compressor_get_type", LIBRARY_GIO);
2451 	Linker.link(g_zlib_compressor_new, "g_zlib_compressor_new", LIBRARY_GIO);
2452 	Linker.link(g_zlib_compressor_get_file_info, "g_zlib_compressor_get_file_info", LIBRARY_GIO);
2453 	Linker.link(g_zlib_compressor_set_file_info, "g_zlib_compressor_set_file_info", LIBRARY_GIO);
2454 
2455 	// gio.ZlibDecompressor
2456 
2457 	Linker.link(g_zlib_decompressor_get_type, "g_zlib_decompressor_get_type", LIBRARY_GIO);
2458 	Linker.link(g_zlib_decompressor_new, "g_zlib_decompressor_new", LIBRARY_GIO);
2459 	Linker.link(g_zlib_decompressor_get_file_info, "g_zlib_decompressor_get_file_info", LIBRARY_GIO);
2460 
2461 	// gio.PollableUtils
2462 
2463 	Linker.link(g_pollable_source_new, "g_pollable_source_new", LIBRARY_GIO);
2464 	Linker.link(g_pollable_source_new_full, "g_pollable_source_new_full", LIBRARY_GIO);
2465 	Linker.link(g_pollable_stream_read, "g_pollable_stream_read", LIBRARY_GIO);
2466 	Linker.link(g_pollable_stream_write, "g_pollable_stream_write", LIBRARY_GIO);
2467 	Linker.link(g_pollable_stream_write_all, "g_pollable_stream_write_all", LIBRARY_GIO);
2468 
2469 	// gio.DBusNames
2470 
2471 	Linker.link(g_bus_own_name, "g_bus_own_name", LIBRARY_GIO);
2472 	Linker.link(g_bus_own_name_on_connection, "g_bus_own_name_on_connection", LIBRARY_GIO);
2473 	Linker.link(g_bus_own_name_on_connection_with_closures, "g_bus_own_name_on_connection_with_closures", LIBRARY_GIO);
2474 	Linker.link(g_bus_own_name_with_closures, "g_bus_own_name_with_closures", LIBRARY_GIO);
2475 	Linker.link(g_bus_unown_name, "g_bus_unown_name", LIBRARY_GIO);
2476 	Linker.link(g_bus_unwatch_name, "g_bus_unwatch_name", LIBRARY_GIO);
2477 	Linker.link(g_bus_watch_name, "g_bus_watch_name", LIBRARY_GIO);
2478 	Linker.link(g_bus_watch_name_on_connection, "g_bus_watch_name_on_connection", LIBRARY_GIO);
2479 	Linker.link(g_bus_watch_name_on_connection_with_closures, "g_bus_watch_name_on_connection_with_closures", LIBRARY_GIO);
2480 	Linker.link(g_bus_watch_name_with_closures, "g_bus_watch_name_with_closures", LIBRARY_GIO);
2481 
2482 	// gio.ContentType
2483 
2484 	Linker.link(g_content_type_can_be_executable, "g_content_type_can_be_executable", LIBRARY_GIO);
2485 	Linker.link(g_content_type_equals, "g_content_type_equals", LIBRARY_GIO);
2486 	Linker.link(g_content_type_from_mime_type, "g_content_type_from_mime_type", LIBRARY_GIO);
2487 	Linker.link(g_content_type_get_description, "g_content_type_get_description", LIBRARY_GIO);
2488 	Linker.link(g_content_type_get_generic_icon_name, "g_content_type_get_generic_icon_name", LIBRARY_GIO);
2489 	Linker.link(g_content_type_get_icon, "g_content_type_get_icon", LIBRARY_GIO);
2490 	Linker.link(g_content_type_get_mime_type, "g_content_type_get_mime_type", LIBRARY_GIO);
2491 	Linker.link(g_content_type_get_symbolic_icon, "g_content_type_get_symbolic_icon", LIBRARY_GIO);
2492 	Linker.link(g_content_type_guess, "g_content_type_guess", LIBRARY_GIO);
2493 	Linker.link(g_content_type_guess_for_tree, "g_content_type_guess_for_tree", LIBRARY_GIO);
2494 	Linker.link(g_content_type_is_a, "g_content_type_is_a", LIBRARY_GIO);
2495 	Linker.link(g_content_type_is_unknown, "g_content_type_is_unknown", LIBRARY_GIO);
2496 	Linker.link(g_content_types_get_registered, "g_content_types_get_registered", LIBRARY_GIO);
2497 	Linker.link(g_content_type_is_mime_type, "g_content_type_is_mime_type", LIBRARY_GIO);
2498 	Linker.link(g_content_type_get_mime_dirs, "g_content_type_get_mime_dirs", LIBRARY_GIO);
2499 	Linker.link(g_content_type_set_mime_dirs, "g_content_type_set_mime_dirs", LIBRARY_GIO);
2500 
2501 	// gio.DBusError
2502 
2503 	Linker.link(g_dbus_error_encode_gerror, "g_dbus_error_encode_gerror", LIBRARY_GIO);
2504 	Linker.link(g_dbus_error_get_remote_error, "g_dbus_error_get_remote_error", LIBRARY_GIO);
2505 	Linker.link(g_dbus_error_is_remote_error, "g_dbus_error_is_remote_error", LIBRARY_GIO);
2506 	Linker.link(g_dbus_error_new_for_dbus_error, "g_dbus_error_new_for_dbus_error", LIBRARY_GIO);
2507 	Linker.link(g_dbus_error_quark, "g_dbus_error_quark", LIBRARY_GIO);
2508 	Linker.link(g_dbus_error_register_error, "g_dbus_error_register_error", LIBRARY_GIO);
2509 	Linker.link(g_dbus_error_register_error_domain, "g_dbus_error_register_error_domain", LIBRARY_GIO);
2510 	Linker.link(g_dbus_error_strip_remote_error, "g_dbus_error_strip_remote_error", LIBRARY_GIO);
2511 	Linker.link(g_dbus_error_unregister_error, "g_dbus_error_unregister_error", LIBRARY_GIO);
2512 
2513 	// gio.DBusUtilities
2514 
2515 	Linker.link(g_dbus_address_escape_value, "g_dbus_address_escape_value", LIBRARY_GIO);
2516 	Linker.link(g_dbus_address_get_for_bus_sync, "g_dbus_address_get_for_bus_sync", LIBRARY_GIO);
2517 	Linker.link(g_dbus_address_get_stream, "g_dbus_address_get_stream", LIBRARY_GIO);
2518 	Linker.link(g_dbus_address_get_stream_finish, "g_dbus_address_get_stream_finish", LIBRARY_GIO);
2519 	Linker.link(g_dbus_address_get_stream_sync, "g_dbus_address_get_stream_sync", LIBRARY_GIO);
2520 	Linker.link(g_dbus_generate_guid, "g_dbus_generate_guid", LIBRARY_GIO);
2521 	Linker.link(g_dbus_gvalue_to_gvariant, "g_dbus_gvalue_to_gvariant", LIBRARY_GIO);
2522 	Linker.link(g_dbus_gvariant_to_gvalue, "g_dbus_gvariant_to_gvalue", LIBRARY_GIO);
2523 	Linker.link(g_dbus_is_address, "g_dbus_is_address", LIBRARY_GIO);
2524 	Linker.link(g_dbus_is_guid, "g_dbus_is_guid", LIBRARY_GIO);
2525 	Linker.link(g_dbus_is_interface_name, "g_dbus_is_interface_name", LIBRARY_GIO);
2526 	Linker.link(g_dbus_is_member_name, "g_dbus_is_member_name", LIBRARY_GIO);
2527 	Linker.link(g_dbus_is_name, "g_dbus_is_name", LIBRARY_GIO);
2528 	Linker.link(g_dbus_is_supported_address, "g_dbus_is_supported_address", LIBRARY_GIO);
2529 	Linker.link(g_dbus_is_unique_name, "g_dbus_is_unique_name", LIBRARY_GIO);
2530 
2531 	// gio.ErrorGIO
2532 
2533 	Linker.link(g_io_error_from_errno, "g_io_error_from_errno", LIBRARY_GIO);
2534 	Linker.link(g_io_error_quark, "g_io_error_quark", LIBRARY_GIO);
2535 }
2536 
2537 __gshared extern(C)
2538 {
2539 
2540 	// gio.Action
2541 
2542 	GType function() c_g_action_get_type;
2543 	int function(const(char)* actionName) c_g_action_name_is_valid;
2544 	int function(const(char)* detailedName, char** actionName, GVariant** targetValue, GError** err) c_g_action_parse_detailed_name;
2545 	char* function(const(char)* actionName, GVariant* targetValue) c_g_action_print_detailed_name;
2546 	void function(GAction* action, GVariant* parameter) c_g_action_activate;
2547 	void function(GAction* action, GVariant* value) c_g_action_change_state;
2548 	int function(GAction* action) c_g_action_get_enabled;
2549 	const(char)* function(GAction* action) c_g_action_get_name;
2550 	GVariantType* function(GAction* action) c_g_action_get_parameter_type;
2551 	GVariant* function(GAction* action) c_g_action_get_state;
2552 	GVariant* function(GAction* action) c_g_action_get_state_hint;
2553 	GVariantType* function(GAction* action) c_g_action_get_state_type;
2554 
2555 	// gio.ActionGroup
2556 
2557 	GType function() c_g_action_group_get_type;
2558 	void function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_action_added;
2559 	void function(GActionGroup* actionGroup, const(char)* actionName, int enabled) c_g_action_group_action_enabled_changed;
2560 	void function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_action_removed;
2561 	void function(GActionGroup* actionGroup, const(char)* actionName, GVariant* state) c_g_action_group_action_state_changed;
2562 	void function(GActionGroup* actionGroup, const(char)* actionName, GVariant* parameter) c_g_action_group_activate_action;
2563 	void function(GActionGroup* actionGroup, const(char)* actionName, GVariant* value) c_g_action_group_change_action_state;
2564 	int function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_get_action_enabled;
2565 	GVariantType* function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_get_action_parameter_type;
2566 	GVariant* function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_get_action_state;
2567 	GVariant* function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_get_action_state_hint;
2568 	GVariantType* function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_get_action_state_type;
2569 	int function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_has_action;
2570 	char** function(GActionGroup* actionGroup) c_g_action_group_list_actions;
2571 	int function(GActionGroup* actionGroup, const(char)* actionName, int* enabled, GVariantType** parameterType, GVariantType** stateType, GVariant** stateHint, GVariant** state) c_g_action_group_query_action;
2572 
2573 	// gio.ActionMap
2574 
2575 	GType function() c_g_action_map_get_type;
2576 	void function(GActionMap* actionMap, GAction* action) c_g_action_map_add_action;
2577 	void function(GActionMap* actionMap, GActionEntry* entries, int nEntries, void* userData) c_g_action_map_add_action_entries;
2578 	GAction* function(GActionMap* actionMap, const(char)* actionName) c_g_action_map_lookup_action;
2579 	void function(GActionMap* actionMap, const(char)* actionName) c_g_action_map_remove_action;
2580 
2581 	// gio.AppInfo
2582 
2583 	GType function() c_g_app_info_get_type;
2584 	GAppInfo* function(char* commandline, const(char)* applicationName, GAppInfoCreateFlags flags, GError** err) c_g_app_info_create_from_commandline;
2585 	GList* function() c_g_app_info_get_all;
2586 	GList* function(const(char)* contentType) c_g_app_info_get_all_for_type;
2587 	GAppInfo* function(const(char)* contentType, int mustSupportUris) c_g_app_info_get_default_for_type;
2588 	GAppInfo* function(const(char)* uriScheme) c_g_app_info_get_default_for_uri_scheme;
2589 	GList* function(const(char)* contentType) c_g_app_info_get_fallback_for_type;
2590 	GList* function(const(char)* contentType) c_g_app_info_get_recommended_for_type;
2591 	int function(const(char)* uri, GAppLaunchContext* context, GError** err) c_g_app_info_launch_default_for_uri;
2592 	void function(const(char)* uri, GAppLaunchContext* context, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_app_info_launch_default_for_uri_async;
2593 	int function(GAsyncResult* result, GError** err) c_g_app_info_launch_default_for_uri_finish;
2594 	void function(const(char)* contentType) c_g_app_info_reset_type_associations;
2595 	int function(GAppInfo* appinfo, const(char)* contentType, GError** err) c_g_app_info_add_supports_type;
2596 	int function(GAppInfo* appinfo) c_g_app_info_can_delete;
2597 	int function(GAppInfo* appinfo) c_g_app_info_can_remove_supports_type;
2598 	int function(GAppInfo* appinfo) c_g_app_info_delete;
2599 	GAppInfo* function(GAppInfo* appinfo) c_g_app_info_dup;
2600 	int function(GAppInfo* appinfo1, GAppInfo* appinfo2) c_g_app_info_equal;
2601 	char* function(GAppInfo* appinfo) c_g_app_info_get_commandline;
2602 	const(char)* function(GAppInfo* appinfo) c_g_app_info_get_description;
2603 	const(char)* function(GAppInfo* appinfo) c_g_app_info_get_display_name;
2604 	char* function(GAppInfo* appinfo) c_g_app_info_get_executable;
2605 	GIcon* function(GAppInfo* appinfo) c_g_app_info_get_icon;
2606 	const(char)* function(GAppInfo* appinfo) c_g_app_info_get_id;
2607 	const(char)* function(GAppInfo* appinfo) c_g_app_info_get_name;
2608 	char** function(GAppInfo* appinfo) c_g_app_info_get_supported_types;
2609 	int function(GAppInfo* appinfo, GList* files, GAppLaunchContext* context, GError** err) c_g_app_info_launch;
2610 	int function(GAppInfo* appinfo, GList* uris, GAppLaunchContext* context, GError** err) c_g_app_info_launch_uris;
2611 	void function(GAppInfo* appinfo, GList* uris, GAppLaunchContext* context, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_app_info_launch_uris_async;
2612 	int function(GAppInfo* appinfo, GAsyncResult* result, GError** err) c_g_app_info_launch_uris_finish;
2613 	int function(GAppInfo* appinfo, const(char)* contentType, GError** err) c_g_app_info_remove_supports_type;
2614 	int function(GAppInfo* appinfo, char* extension, GError** err) c_g_app_info_set_as_default_for_extension;
2615 	int function(GAppInfo* appinfo, const(char)* contentType, GError** err) c_g_app_info_set_as_default_for_type;
2616 	int function(GAppInfo* appinfo, const(char)* contentType, GError** err) c_g_app_info_set_as_last_used_for_type;
2617 	int function(GAppInfo* appinfo) c_g_app_info_should_show;
2618 	int function(GAppInfo* appinfo) c_g_app_info_supports_files;
2619 	int function(GAppInfo* appinfo) c_g_app_info_supports_uris;
2620 
2621 	// gio.AppInfoMonitor
2622 
2623 	GType function() c_g_app_info_monitor_get_type;
2624 	GAppInfoMonitor* function() c_g_app_info_monitor_get;
2625 
2626 	// gio.AppLaunchContext
2627 
2628 	GType function() c_g_app_launch_context_get_type;
2629 	GAppLaunchContext* function() c_g_app_launch_context_new;
2630 	char* function(GAppLaunchContext* context, GAppInfo* info, GList* files) c_g_app_launch_context_get_display;
2631 	char** function(GAppLaunchContext* context) c_g_app_launch_context_get_environment;
2632 	char* function(GAppLaunchContext* context, GAppInfo* info, GList* files) c_g_app_launch_context_get_startup_notify_id;
2633 	void function(GAppLaunchContext* context, const(char)* startupNotifyId) c_g_app_launch_context_launch_failed;
2634 	void function(GAppLaunchContext* context, char* variable, char* value) c_g_app_launch_context_setenv;
2635 	void function(GAppLaunchContext* context, char* variable) c_g_app_launch_context_unsetenv;
2636 
2637 	// gio.Application
2638 
2639 	GType function() c_g_application_get_type;
2640 	GApplication* function(const(char)* applicationId, GApplicationFlags flags) c_g_application_new;
2641 	GApplication* function() c_g_application_get_default;
2642 	int function(const(char)* applicationId) c_g_application_id_is_valid;
2643 	void function(GApplication* application) c_g_application_activate;
2644 	void function(GApplication* application, const(char)* longName, char shortName, GOptionFlags flags, GOptionArg arg, const(char)* description, const(char)* argDescription) c_g_application_add_main_option;
2645 	void function(GApplication* application, GOptionEntry* entries) c_g_application_add_main_option_entries;
2646 	void function(GApplication* application, GOptionGroup* group) c_g_application_add_option_group;
2647 	void function(GApplication* application, void* object, const(char)* property) c_g_application_bind_busy_property;
2648 	const(char)* function(GApplication* application) c_g_application_get_application_id;
2649 	GDBusConnection* function(GApplication* application) c_g_application_get_dbus_connection;
2650 	const(char)* function(GApplication* application) c_g_application_get_dbus_object_path;
2651 	GApplicationFlags function(GApplication* application) c_g_application_get_flags;
2652 	uint function(GApplication* application) c_g_application_get_inactivity_timeout;
2653 	int function(GApplication* application) c_g_application_get_is_busy;
2654 	int function(GApplication* application) c_g_application_get_is_registered;
2655 	int function(GApplication* application) c_g_application_get_is_remote;
2656 	const(char)* function(GApplication* application) c_g_application_get_resource_base_path;
2657 	void function(GApplication* application) c_g_application_hold;
2658 	void function(GApplication* application) c_g_application_mark_busy;
2659 	void function(GApplication* application, GFile** files, int nFiles, const(char)* hint) c_g_application_open;
2660 	void function(GApplication* application) c_g_application_quit;
2661 	int function(GApplication* application, GCancellable* cancellable, GError** err) c_g_application_register;
2662 	void function(GApplication* application) c_g_application_release;
2663 	int function(GApplication* application, int argc, char** argv) c_g_application_run;
2664 	void function(GApplication* application, const(char)* id, GNotification* notification) c_g_application_send_notification;
2665 	void function(GApplication* application, GActionGroup* actionGroup) c_g_application_set_action_group;
2666 	void function(GApplication* application, const(char)* applicationId) c_g_application_set_application_id;
2667 	void function(GApplication* application) c_g_application_set_default;
2668 	void function(GApplication* application, GApplicationFlags flags) c_g_application_set_flags;
2669 	void function(GApplication* application, uint inactivityTimeout) c_g_application_set_inactivity_timeout;
2670 	void function(GApplication* application, const(char)* description) c_g_application_set_option_context_description;
2671 	void function(GApplication* application, const(char)* parameterString) c_g_application_set_option_context_parameter_string;
2672 	void function(GApplication* application, const(char)* summary) c_g_application_set_option_context_summary;
2673 	void function(GApplication* application, const(char)* resourcePath) c_g_application_set_resource_base_path;
2674 	void function(GApplication* application, void* object, const(char)* property) c_g_application_unbind_busy_property;
2675 	void function(GApplication* application) c_g_application_unmark_busy;
2676 	void function(GApplication* application, const(char)* id) c_g_application_withdraw_notification;
2677 
2678 	// gio.ApplicationCommandLine
2679 
2680 	GType function() c_g_application_command_line_get_type;
2681 	GFile* function(GApplicationCommandLine* cmdline, char* arg) c_g_application_command_line_create_file_for_arg;
2682 	char** function(GApplicationCommandLine* cmdline, int* argc) c_g_application_command_line_get_arguments;
2683 	char* function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_cwd;
2684 	char** function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_environ;
2685 	int function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_exit_status;
2686 	int function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_is_remote;
2687 	GVariantDict* function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_options_dict;
2688 	GVariant* function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_platform_data;
2689 	GInputStream* function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_stdin;
2690 	const(char)* function(GApplicationCommandLine* cmdline, char* name) c_g_application_command_line_getenv;
2691 	void function(GApplicationCommandLine* cmdline, const(char)* format, ... ) c_g_application_command_line_print;
2692 	void function(GApplicationCommandLine* cmdline, const(char)* format, ... ) c_g_application_command_line_printerr;
2693 	void function(GApplicationCommandLine* cmdline, int exitStatus) c_g_application_command_line_set_exit_status;
2694 
2695 	// gio.AsyncInitable
2696 
2697 	GType function() c_g_async_initable_get_type;
2698 	void function(GType objectType, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData, const(char)* firstPropertyName, ... ) c_g_async_initable_new_async;
2699 	void function(GType objectType, const(char)* firstPropertyName, void* varArgs, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_async_initable_new_valist_async;
2700 	void function(GType objectType, uint nParameters, GParameter* parameters, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_async_initable_newv_async;
2701 	void function(GAsyncInitable* initable, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_async_initable_init_async;
2702 	int function(GAsyncInitable* initable, GAsyncResult* res, GError** err) c_g_async_initable_init_finish;
2703 	GObject* function(GAsyncInitable* initable, GAsyncResult* res, GError** err) c_g_async_initable_new_finish;
2704 
2705 	// gio.AsyncResult
2706 
2707 	GType function() c_g_async_result_get_type;
2708 	GObject* function(GAsyncResult* res) c_g_async_result_get_source_object;
2709 	void* function(GAsyncResult* res) c_g_async_result_get_user_data;
2710 	int function(GAsyncResult* res, void* sourceTag) c_g_async_result_is_tagged;
2711 	int function(GAsyncResult* res, GError** err) c_g_async_result_legacy_propagate_error;
2712 
2713 	// gio.BufferedInputStream
2714 
2715 	GType function() c_g_buffered_input_stream_get_type;
2716 	GInputStream* function(GInputStream* baseStream) c_g_buffered_input_stream_new;
2717 	GInputStream* function(GInputStream* baseStream, size_t size) c_g_buffered_input_stream_new_sized;
2718 	ptrdiff_t function(GBufferedInputStream* stream, ptrdiff_t count, GCancellable* cancellable, GError** err) c_g_buffered_input_stream_fill;
2719 	void function(GBufferedInputStream* stream, ptrdiff_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_buffered_input_stream_fill_async;
2720 	ptrdiff_t function(GBufferedInputStream* stream, GAsyncResult* result, GError** err) c_g_buffered_input_stream_fill_finish;
2721 	size_t function(GBufferedInputStream* stream) c_g_buffered_input_stream_get_available;
2722 	size_t function(GBufferedInputStream* stream) c_g_buffered_input_stream_get_buffer_size;
2723 	size_t function(GBufferedInputStream* stream, void* buffer, size_t offset, size_t count) c_g_buffered_input_stream_peek;
2724 	void* function(GBufferedInputStream* stream, size_t* count) c_g_buffered_input_stream_peek_buffer;
2725 	int function(GBufferedInputStream* stream, GCancellable* cancellable, GError** err) c_g_buffered_input_stream_read_byte;
2726 	void function(GBufferedInputStream* stream, size_t size) c_g_buffered_input_stream_set_buffer_size;
2727 
2728 	// gio.BufferedOutputStream
2729 
2730 	GType function() c_g_buffered_output_stream_get_type;
2731 	GOutputStream* function(GOutputStream* baseStream) c_g_buffered_output_stream_new;
2732 	GOutputStream* function(GOutputStream* baseStream, size_t size) c_g_buffered_output_stream_new_sized;
2733 	int function(GBufferedOutputStream* stream) c_g_buffered_output_stream_get_auto_grow;
2734 	size_t function(GBufferedOutputStream* stream) c_g_buffered_output_stream_get_buffer_size;
2735 	void function(GBufferedOutputStream* stream, int autoGrow) c_g_buffered_output_stream_set_auto_grow;
2736 	void function(GBufferedOutputStream* stream, size_t size) c_g_buffered_output_stream_set_buffer_size;
2737 
2738 	// gio.BytesIcon
2739 
2740 	GType function() c_g_bytes_icon_get_type;
2741 	GIcon* function(GBytes* bytes) c_g_bytes_icon_new;
2742 	GBytes* function(GBytesIcon* icon) c_g_bytes_icon_get_bytes;
2743 
2744 	// gio.Cancellable
2745 
2746 	GType function() c_g_cancellable_get_type;
2747 	GCancellable* function() c_g_cancellable_new;
2748 	GCancellable* function() c_g_cancellable_get_current;
2749 	void function(GCancellable* cancellable) c_g_cancellable_cancel;
2750 	gulong function(GCancellable* cancellable, GCallback callback, void* data, GDestroyNotify dataDestroyFunc) c_g_cancellable_connect;
2751 	void function(GCancellable* cancellable, gulong handlerId) c_g_cancellable_disconnect;
2752 	int function(GCancellable* cancellable) c_g_cancellable_get_fd;
2753 	int function(GCancellable* cancellable) c_g_cancellable_is_cancelled;
2754 	int function(GCancellable* cancellable, GPollFD* pollfd) c_g_cancellable_make_pollfd;
2755 	void function(GCancellable* cancellable) c_g_cancellable_pop_current;
2756 	void function(GCancellable* cancellable) c_g_cancellable_push_current;
2757 	void function(GCancellable* cancellable) c_g_cancellable_release_fd;
2758 	void function(GCancellable* cancellable) c_g_cancellable_reset;
2759 	int function(GCancellable* cancellable, GError** err) c_g_cancellable_set_error_if_cancelled;
2760 	GSource* function(GCancellable* cancellable) c_g_cancellable_source_new;
2761 
2762 	// gio.CharsetConverter
2763 
2764 	GType function() c_g_charset_converter_get_type;
2765 	GCharsetConverter* function(const(char)* toCharset, const(char)* fromCharset, GError** err) c_g_charset_converter_new;
2766 	uint function(GCharsetConverter* converter) c_g_charset_converter_get_num_fallbacks;
2767 	int function(GCharsetConverter* converter) c_g_charset_converter_get_use_fallback;
2768 	void function(GCharsetConverter* converter, int useFallback) c_g_charset_converter_set_use_fallback;
2769 
2770 	// gio.Converter
2771 
2772 	GType function() c_g_converter_get_type;
2773 	GConverterResult function(GConverter* converter, void* inbuf, size_t inbufSize, void* outbuf, size_t outbufSize, GConverterFlags flags, size_t* bytesRead, size_t* bytesWritten, GError** err) c_g_converter_convert;
2774 	void function(GConverter* converter) c_g_converter_reset;
2775 
2776 	// gio.ConverterInputStream
2777 
2778 	GType function() c_g_converter_input_stream_get_type;
2779 	GInputStream* function(GInputStream* baseStream, GConverter* converter) c_g_converter_input_stream_new;
2780 	GConverter* function(GConverterInputStream* converterStream) c_g_converter_input_stream_get_converter;
2781 
2782 	// gio.ConverterOutputStream
2783 
2784 	GType function() c_g_converter_output_stream_get_type;
2785 	GOutputStream* function(GOutputStream* baseStream, GConverter* converter) c_g_converter_output_stream_new;
2786 	GConverter* function(GConverterOutputStream* converterStream) c_g_converter_output_stream_get_converter;
2787 
2788 	// gio.Credentials
2789 
2790 	GType function() c_g_credentials_get_type;
2791 	GCredentials* function() c_g_credentials_new;
2792 	void* function(GCredentials* credentials, GCredentialsType nativeType) c_g_credentials_get_native;
2793 	pid_t function(GCredentials* credentials, GError** err) c_g_credentials_get_unix_pid;
2794 	uid_t function(GCredentials* credentials, GError** err) c_g_credentials_get_unix_user;
2795 	int function(GCredentials* credentials, GCredentials* otherCredentials, GError** err) c_g_credentials_is_same_user;
2796 	void function(GCredentials* credentials, GCredentialsType nativeType, void* native) c_g_credentials_set_native;
2797 	int function(GCredentials* credentials, uid_t uid, GError** err) c_g_credentials_set_unix_user;
2798 	char* function(GCredentials* credentials) c_g_credentials_to_string;
2799 
2800 	// gio.DBusActionGroup
2801 
2802 	GType function() c_g_dbus_action_group_get_type;
2803 	GDBusActionGroup* function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath) c_g_dbus_action_group_get;
2804 
2805 	// gio.DBusAnnotationInfo
2806 
2807 	GType function() c_g_dbus_annotation_info_get_type;
2808 	GDBusAnnotationInfo* function(GDBusAnnotationInfo* info) c_g_dbus_annotation_info_ref;
2809 	void function(GDBusAnnotationInfo* info) c_g_dbus_annotation_info_unref;
2810 	const(char)* function(GDBusAnnotationInfo** annotations, const(char)* name) c_g_dbus_annotation_info_lookup;
2811 
2812 	// gio.DBusArgInfo
2813 
2814 	GType function() c_g_dbus_arg_info_get_type;
2815 	GDBusArgInfo* function(GDBusArgInfo* info) c_g_dbus_arg_info_ref;
2816 	void function(GDBusArgInfo* info) c_g_dbus_arg_info_unref;
2817 
2818 	// gio.DBusAuthObserver
2819 
2820 	GType function() c_g_dbus_auth_observer_get_type;
2821 	GDBusAuthObserver* function() c_g_dbus_auth_observer_new;
2822 	int function(GDBusAuthObserver* observer, const(char)* mechanism) c_g_dbus_auth_observer_allow_mechanism;
2823 	int function(GDBusAuthObserver* observer, GIOStream* stream, GCredentials* credentials) c_g_dbus_auth_observer_authorize_authenticated_peer;
2824 
2825 	// gio.DBusConnection
2826 
2827 	GType function() c_g_dbus_connection_get_type;
2828 	GDBusConnection* function(GAsyncResult* res, GError** err) c_g_dbus_connection_new_finish;
2829 	GDBusConnection* function(GAsyncResult* res, GError** err) c_g_dbus_connection_new_for_address_finish;
2830 	GDBusConnection* function(const(char)* address, GDBusConnectionFlags flags, GDBusAuthObserver* observer, GCancellable* cancellable, GError** err) c_g_dbus_connection_new_for_address_sync;
2831 	GDBusConnection* function(GIOStream* stream, const(char)* guid, GDBusConnectionFlags flags, GDBusAuthObserver* observer, GCancellable* cancellable, GError** err) c_g_dbus_connection_new_sync;
2832 	void function(GIOStream* stream, const(char)* guid, GDBusConnectionFlags flags, GDBusAuthObserver* observer, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_new;
2833 	void function(const(char)* address, GDBusConnectionFlags flags, GDBusAuthObserver* observer, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_new_for_address;
2834 	uint function(GDBusConnection* connection, GDBusMessageFilterFunction filterFunction, void* userData, GDestroyNotify userDataFreeFunc) c_g_dbus_connection_add_filter;
2835 	void function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath, const(char)* interfaceName, const(char)* methodName, GVariant* parameters, GVariantType* replyType, GDBusCallFlags flags, int timeoutMsec, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_call;
2836 	GVariant* function(GDBusConnection* connection, GAsyncResult* res, GError** err) c_g_dbus_connection_call_finish;
2837 	GVariant* function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath, const(char)* interfaceName, const(char)* methodName, GVariant* parameters, GVariantType* replyType, GDBusCallFlags flags, int timeoutMsec, GCancellable* cancellable, GError** err) c_g_dbus_connection_call_sync;
2838 	void function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath, const(char)* interfaceName, const(char)* methodName, GVariant* parameters, GVariantType* replyType, GDBusCallFlags flags, int timeoutMsec, GUnixFDList* fdList, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_call_with_unix_fd_list;
2839 	GVariant* function(GDBusConnection* connection, GUnixFDList** outFdList, GAsyncResult* res, GError** err) c_g_dbus_connection_call_with_unix_fd_list_finish;
2840 	GVariant* function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath, const(char)* interfaceName, const(char)* methodName, GVariant* parameters, GVariantType* replyType, GDBusCallFlags flags, int timeoutMsec, GUnixFDList* fdList, GUnixFDList** outFdList, GCancellable* cancellable, GError** err) c_g_dbus_connection_call_with_unix_fd_list_sync;
2841 	void function(GDBusConnection* connection, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_close;
2842 	int function(GDBusConnection* connection, GAsyncResult* res, GError** err) c_g_dbus_connection_close_finish;
2843 	int function(GDBusConnection* connection, GCancellable* cancellable, GError** err) c_g_dbus_connection_close_sync;
2844 	int function(GDBusConnection* connection, const(char)* destinationBusName, const(char)* objectPath, const(char)* interfaceName, const(char)* signalName, GVariant* parameters, GError** err) c_g_dbus_connection_emit_signal;
2845 	uint function(GDBusConnection* connection, const(char)* objectPath, GActionGroup* actionGroup, GError** err) c_g_dbus_connection_export_action_group;
2846 	uint function(GDBusConnection* connection, const(char)* objectPath, GMenuModel* menu, GError** err) c_g_dbus_connection_export_menu_model;
2847 	void function(GDBusConnection* connection, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_flush;
2848 	int function(GDBusConnection* connection, GAsyncResult* res, GError** err) c_g_dbus_connection_flush_finish;
2849 	int function(GDBusConnection* connection, GCancellable* cancellable, GError** err) c_g_dbus_connection_flush_sync;
2850 	GDBusCapabilityFlags function(GDBusConnection* connection) c_g_dbus_connection_get_capabilities;
2851 	int function(GDBusConnection* connection) c_g_dbus_connection_get_exit_on_close;
2852 	GDBusConnectionFlags function(GDBusConnection* connection) c_g_dbus_connection_get_flags;
2853 	const(char)* function(GDBusConnection* connection) c_g_dbus_connection_get_guid;
2854 	uint function(GDBusConnection* connection) c_g_dbus_connection_get_last_serial;
2855 	GCredentials* function(GDBusConnection* connection) c_g_dbus_connection_get_peer_credentials;
2856 	GIOStream* function(GDBusConnection* connection) c_g_dbus_connection_get_stream;
2857 	const(char)* function(GDBusConnection* connection) c_g_dbus_connection_get_unique_name;
2858 	int function(GDBusConnection* connection) c_g_dbus_connection_is_closed;
2859 	uint function(GDBusConnection* connection, const(char)* objectPath, GDBusInterfaceInfo* interfaceInfo, GDBusInterfaceVTable* vtable, void* userData, GDestroyNotify userDataFreeFunc, GError** err) c_g_dbus_connection_register_object;
2860 	uint function(GDBusConnection* connection, const(char)* objectPath, GDBusInterfaceInfo* interfaceInfo, GClosure* methodCallClosure, GClosure* getPropertyClosure, GClosure* setPropertyClosure, GError** err) c_g_dbus_connection_register_object_with_closures;
2861 	uint function(GDBusConnection* connection, const(char)* objectPath, GDBusSubtreeVTable* vtable, GDBusSubtreeFlags flags, void* userData, GDestroyNotify userDataFreeFunc, GError** err) c_g_dbus_connection_register_subtree;
2862 	void function(GDBusConnection* connection, uint filterId) c_g_dbus_connection_remove_filter;
2863 	int function(GDBusConnection* connection, GDBusMessage* message, GDBusSendMessageFlags flags, uint* outSerial, GError** err) c_g_dbus_connection_send_message;
2864 	void function(GDBusConnection* connection, GDBusMessage* message, GDBusSendMessageFlags flags, int timeoutMsec, uint* outSerial, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_send_message_with_reply;
2865 	GDBusMessage* function(GDBusConnection* connection, GAsyncResult* res, GError** err) c_g_dbus_connection_send_message_with_reply_finish;
2866 	GDBusMessage* function(GDBusConnection* connection, GDBusMessage* message, GDBusSendMessageFlags flags, int timeoutMsec, uint* outSerial, GCancellable* cancellable, GError** err) c_g_dbus_connection_send_message_with_reply_sync;
2867 	void function(GDBusConnection* connection, int exitOnClose) c_g_dbus_connection_set_exit_on_close;
2868 	uint function(GDBusConnection* connection, const(char)* sender, const(char)* interfaceName, const(char)* member, const(char)* objectPath, const(char)* arg0, GDBusSignalFlags flags, GDBusSignalCallback callback, void* userData, GDestroyNotify userDataFreeFunc) c_g_dbus_connection_signal_subscribe;
2869 	void function(GDBusConnection* connection, uint subscriptionId) c_g_dbus_connection_signal_unsubscribe;
2870 	void function(GDBusConnection* connection) c_g_dbus_connection_start_message_processing;
2871 	void function(GDBusConnection* connection, uint exportId) c_g_dbus_connection_unexport_action_group;
2872 	void function(GDBusConnection* connection, uint exportId) c_g_dbus_connection_unexport_menu_model;
2873 	int function(GDBusConnection* connection, uint registrationId) c_g_dbus_connection_unregister_object;
2874 	int function(GDBusConnection* connection, uint registrationId) c_g_dbus_connection_unregister_subtree;
2875 	void function(GBusType busType, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_bus_get;
2876 	GDBusConnection* function(GAsyncResult* res, GError** err) c_g_bus_get_finish;
2877 	GDBusConnection* function(GBusType busType, GCancellable* cancellable, GError** err) c_g_bus_get_sync;
2878 
2879 	// gio.DBusInterface
2880 
2881 	GType function() c_g_dbus_interface_get_type;
2882 	GDBusObject* function(GDBusInterface* interface_) c_g_dbus_interface_dup_object;
2883 	GDBusInterfaceInfo* function(GDBusInterface* interface_) c_g_dbus_interface_get_info;
2884 	GDBusObject* function(GDBusInterface* interface_) c_g_dbus_interface_get_object;
2885 	void function(GDBusInterface* interface_, GDBusObject* object) c_g_dbus_interface_set_object;
2886 
2887 	// gio.DBusInterfaceInfo
2888 
2889 	GType function() c_g_dbus_interface_info_get_type;
2890 	void function(GDBusInterfaceInfo* info) c_g_dbus_interface_info_cache_build;
2891 	void function(GDBusInterfaceInfo* info) c_g_dbus_interface_info_cache_release;
2892 	void function(GDBusInterfaceInfo* info, uint indent, GString* stringBuilder) c_g_dbus_interface_info_generate_xml;
2893 	GDBusMethodInfo* function(GDBusInterfaceInfo* info, const(char)* name) c_g_dbus_interface_info_lookup_method;
2894 	GDBusPropertyInfo* function(GDBusInterfaceInfo* info, const(char)* name) c_g_dbus_interface_info_lookup_property;
2895 	GDBusSignalInfo* function(GDBusInterfaceInfo* info, const(char)* name) c_g_dbus_interface_info_lookup_signal;
2896 	GDBusInterfaceInfo* function(GDBusInterfaceInfo* info) c_g_dbus_interface_info_ref;
2897 	void function(GDBusInterfaceInfo* info) c_g_dbus_interface_info_unref;
2898 
2899 	// gio.DBusInterfaceSkeleton
2900 
2901 	GType function() c_g_dbus_interface_skeleton_get_type;
2902 	int function(GDBusInterfaceSkeleton* interface_, GDBusConnection* connection, const(char)* objectPath, GError** err) c_g_dbus_interface_skeleton_export;
2903 	void function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_flush;
2904 	GDBusConnection* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_connection;
2905 	GList* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_connections;
2906 	GDBusInterfaceSkeletonFlags function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_flags;
2907 	GDBusInterfaceInfo* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_info;
2908 	const(char)* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_object_path;
2909 	GVariant* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_properties;
2910 	GDBusInterfaceVTable* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_vtable;
2911 	int function(GDBusInterfaceSkeleton* interface_, GDBusConnection* connection) c_g_dbus_interface_skeleton_has_connection;
2912 	void function(GDBusInterfaceSkeleton* interface_, GDBusInterfaceSkeletonFlags flags) c_g_dbus_interface_skeleton_set_flags;
2913 	void function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_unexport;
2914 	void function(GDBusInterfaceSkeleton* interface_, GDBusConnection* connection) c_g_dbus_interface_skeleton_unexport_from_connection;
2915 
2916 	// gio.DBusMenuModel
2917 
2918 	GType function() c_g_dbus_menu_model_get_type;
2919 	GDBusMenuModel* function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath) c_g_dbus_menu_model_get;
2920 
2921 	// gio.DBusMessage
2922 
2923 	GType function() c_g_dbus_message_get_type;
2924 	GDBusMessage* function() c_g_dbus_message_new;
2925 	GDBusMessage* function(char* blob, size_t blobLen, GDBusCapabilityFlags capabilities, GError** err) c_g_dbus_message_new_from_blob;
2926 	GDBusMessage* function(const(char)* name, const(char)* path, const(char)* interface_, const(char)* method) c_g_dbus_message_new_method_call;
2927 	GDBusMessage* function(const(char)* path, const(char)* interface_, const(char)* signal) c_g_dbus_message_new_signal;
2928 	ptrdiff_t function(char* blob, size_t blobLen, GError** err) c_g_dbus_message_bytes_needed;
2929 	GDBusMessage* function(GDBusMessage* message, GError** err) c_g_dbus_message_copy;
2930 	const(char)* function(GDBusMessage* message) c_g_dbus_message_get_arg0;
2931 	GVariant* function(GDBusMessage* message) c_g_dbus_message_get_body;
2932 	GDBusMessageByteOrder function(GDBusMessage* message) c_g_dbus_message_get_byte_order;
2933 	const(char)* function(GDBusMessage* message) c_g_dbus_message_get_destination;
2934 	const(char)* function(GDBusMessage* message) c_g_dbus_message_get_error_name;
2935 	GDBusMessageFlags function(GDBusMessage* message) c_g_dbus_message_get_flags;
2936 	GVariant* function(GDBusMessage* message, GDBusMessageHeaderField headerField) c_g_dbus_message_get_header;
2937 	char* function(GDBusMessage* message) c_g_dbus_message_get_header_fields;
2938 	const(char)* function(GDBusMessage* message) c_g_dbus_message_get_interface;
2939 	int function(GDBusMessage* message) c_g_dbus_message_get_locked;
2940 	const(char)* function(GDBusMessage* message) c_g_dbus_message_get_member;
2941 	GDBusMessageType function(GDBusMessage* message) c_g_dbus_message_get_message_type;
2942 	uint function(GDBusMessage* message) c_g_dbus_message_get_num_unix_fds;
2943 	const(char)* function(GDBusMessage* message) c_g_dbus_message_get_path;
2944 	uint function(GDBusMessage* message) c_g_dbus_message_get_reply_serial;
2945 	const(char)* function(GDBusMessage* message) c_g_dbus_message_get_sender;
2946 	uint function(GDBusMessage* message) c_g_dbus_message_get_serial;
2947 	const(char)* function(GDBusMessage* message) c_g_dbus_message_get_signature;
2948 	GUnixFDList* function(GDBusMessage* message) c_g_dbus_message_get_unix_fd_list;
2949 	void function(GDBusMessage* message) c_g_dbus_message_lock;
2950 	GDBusMessage* function(GDBusMessage* methodCallMessage, const(char)* errorName, const(char)* errorMessageFormat, ... ) c_g_dbus_message_new_method_error;
2951 	GDBusMessage* function(GDBusMessage* methodCallMessage, const(char)* errorName, const(char)* errorMessage) c_g_dbus_message_new_method_error_literal;
2952 	GDBusMessage* function(GDBusMessage* methodCallMessage, const(char)* errorName, const(char)* errorMessageFormat, void* varArgs) c_g_dbus_message_new_method_error_valist;
2953 	GDBusMessage* function(GDBusMessage* methodCallMessage) c_g_dbus_message_new_method_reply;
2954 	char* function(GDBusMessage* message, uint indent) c_g_dbus_message_print;
2955 	void function(GDBusMessage* message, GVariant* body_) c_g_dbus_message_set_body;
2956 	void function(GDBusMessage* message, GDBusMessageByteOrder byteOrder) c_g_dbus_message_set_byte_order;
2957 	void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_destination;
2958 	void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_error_name;
2959 	void function(GDBusMessage* message, GDBusMessageFlags flags) c_g_dbus_message_set_flags;
2960 	void function(GDBusMessage* message, GDBusMessageHeaderField headerField, GVariant* value) c_g_dbus_message_set_header;
2961 	void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_interface;
2962 	void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_member;
2963 	void function(GDBusMessage* message, GDBusMessageType type) c_g_dbus_message_set_message_type;
2964 	void function(GDBusMessage* message, uint value) c_g_dbus_message_set_num_unix_fds;
2965 	void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_path;
2966 	void function(GDBusMessage* message, uint value) c_g_dbus_message_set_reply_serial;
2967 	void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_sender;
2968 	void function(GDBusMessage* message, uint serial) c_g_dbus_message_set_serial;
2969 	void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_signature;
2970 	void function(GDBusMessage* message, GUnixFDList* fdList) c_g_dbus_message_set_unix_fd_list;
2971 	char* function(GDBusMessage* message, size_t* outSize, GDBusCapabilityFlags capabilities, GError** err) c_g_dbus_message_to_blob;
2972 	int function(GDBusMessage* message, GError** err) c_g_dbus_message_to_gerror;
2973 
2974 	// gio.DBusMethodInfo
2975 
2976 	GType function() c_g_dbus_method_info_get_type;
2977 	GDBusMethodInfo* function(GDBusMethodInfo* info) c_g_dbus_method_info_ref;
2978 	void function(GDBusMethodInfo* info) c_g_dbus_method_info_unref;
2979 
2980 	// gio.DBusMethodInvocation
2981 
2982 	GType function() c_g_dbus_method_invocation_get_type;
2983 	GDBusConnection* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_connection;
2984 	const(char)* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_interface_name;
2985 	GDBusMessage* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_message;
2986 	GDBusMethodInfo* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_method_info;
2987 	const(char)* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_method_name;
2988 	const(char)* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_object_path;
2989 	GVariant* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_parameters;
2990 	GDBusPropertyInfo* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_property_info;
2991 	const(char)* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_sender;
2992 	void* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_user_data;
2993 	void function(GDBusMethodInvocation* invocation, const(char)* errorName, const(char)* errorMessage) c_g_dbus_method_invocation_return_dbus_error;
2994 	void function(GDBusMethodInvocation* invocation, GQuark domain, int code, const(char)* format, ... ) c_g_dbus_method_invocation_return_error;
2995 	void function(GDBusMethodInvocation* invocation, GQuark domain, int code, const(char)* message) c_g_dbus_method_invocation_return_error_literal;
2996 	void function(GDBusMethodInvocation* invocation, GQuark domain, int code, const(char)* format, void* varArgs) c_g_dbus_method_invocation_return_error_valist;
2997 	void function(GDBusMethodInvocation* invocation, GError* error) c_g_dbus_method_invocation_return_gerror;
2998 	void function(GDBusMethodInvocation* invocation, GVariant* parameters) c_g_dbus_method_invocation_return_value;
2999 	void function(GDBusMethodInvocation* invocation, GVariant* parameters, GUnixFDList* fdList) c_g_dbus_method_invocation_return_value_with_unix_fd_list;
3000 	void function(GDBusMethodInvocation* invocation, GError* error) c_g_dbus_method_invocation_take_error;
3001 
3002 	// gio.DBusNodeInfo
3003 
3004 	GType function() c_g_dbus_node_info_get_type;
3005 	GDBusNodeInfo* function(const(char)* xmlData, GError** err) c_g_dbus_node_info_new_for_xml;
3006 	void function(GDBusNodeInfo* info, uint indent, GString* stringBuilder) c_g_dbus_node_info_generate_xml;
3007 	GDBusInterfaceInfo* function(GDBusNodeInfo* info, const(char)* name) c_g_dbus_node_info_lookup_interface;
3008 	GDBusNodeInfo* function(GDBusNodeInfo* info) c_g_dbus_node_info_ref;
3009 	void function(GDBusNodeInfo* info) c_g_dbus_node_info_unref;
3010 
3011 	// gio.DBusObject
3012 
3013 	GType function() c_g_dbus_object_get_type;
3014 	GDBusInterface* function(GDBusObject* object, const(char)* interfaceName) c_g_dbus_object_get_interface;
3015 	GList* function(GDBusObject* object) c_g_dbus_object_get_interfaces;
3016 	const(char)* function(GDBusObject* object) c_g_dbus_object_get_object_path;
3017 
3018 	// gio.DBusObjectManager
3019 
3020 	GType function() c_g_dbus_object_manager_get_type;
3021 	GDBusInterface* function(GDBusObjectManager* manager, const(char)* objectPath, const(char)* interfaceName) c_g_dbus_object_manager_get_interface;
3022 	GDBusObject* function(GDBusObjectManager* manager, const(char)* objectPath) c_g_dbus_object_manager_get_object;
3023 	const(char)* function(GDBusObjectManager* manager) c_g_dbus_object_manager_get_object_path;
3024 	GList* function(GDBusObjectManager* manager) c_g_dbus_object_manager_get_objects;
3025 
3026 	// gio.DBusObjectManagerClient
3027 
3028 	GType function() c_g_dbus_object_manager_client_get_type;
3029 	GDBusObjectManager* function(GAsyncResult* res, GError** err) c_g_dbus_object_manager_client_new_finish;
3030 	GDBusObjectManager* function(GAsyncResult* res, GError** err) c_g_dbus_object_manager_client_new_for_bus_finish;
3031 	GDBusObjectManager* function(GBusType busType, GDBusObjectManagerClientFlags flags, const(char)* name, const(char)* objectPath, GDBusProxyTypeFunc getProxyTypeFunc, void* getProxyTypeUserData, GDestroyNotify getProxyTypeDestroyNotify, GCancellable* cancellable, GError** err) c_g_dbus_object_manager_client_new_for_bus_sync;
3032 	GDBusObjectManager* function(GDBusConnection* connection, GDBusObjectManagerClientFlags flags, const(char)* name, const(char)* objectPath, GDBusProxyTypeFunc getProxyTypeFunc, void* getProxyTypeUserData, GDestroyNotify getProxyTypeDestroyNotify, GCancellable* cancellable, GError** err) c_g_dbus_object_manager_client_new_sync;
3033 	void function(GDBusConnection* connection, GDBusObjectManagerClientFlags flags, const(char)* name, const(char)* objectPath, GDBusProxyTypeFunc getProxyTypeFunc, void* getProxyTypeUserData, GDestroyNotify getProxyTypeDestroyNotify, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_object_manager_client_new;
3034 	void function(GBusType busType, GDBusObjectManagerClientFlags flags, const(char)* name, const(char)* objectPath, GDBusProxyTypeFunc getProxyTypeFunc, void* getProxyTypeUserData, GDestroyNotify getProxyTypeDestroyNotify, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_object_manager_client_new_for_bus;
3035 	GDBusConnection* function(GDBusObjectManagerClient* manager) c_g_dbus_object_manager_client_get_connection;
3036 	GDBusObjectManagerClientFlags function(GDBusObjectManagerClient* manager) c_g_dbus_object_manager_client_get_flags;
3037 	const(char)* function(GDBusObjectManagerClient* manager) c_g_dbus_object_manager_client_get_name;
3038 	char* function(GDBusObjectManagerClient* manager) c_g_dbus_object_manager_client_get_name_owner;
3039 
3040 	// gio.DBusObjectManagerServer
3041 
3042 	GType function() c_g_dbus_object_manager_server_get_type;
3043 	GDBusObjectManagerServer* function(const(char)* objectPath) c_g_dbus_object_manager_server_new;
3044 	void function(GDBusObjectManagerServer* manager, GDBusObjectSkeleton* object) c_g_dbus_object_manager_server_export;
3045 	void function(GDBusObjectManagerServer* manager, GDBusObjectSkeleton* object) c_g_dbus_object_manager_server_export_uniquely;
3046 	GDBusConnection* function(GDBusObjectManagerServer* manager) c_g_dbus_object_manager_server_get_connection;
3047 	int function(GDBusObjectManagerServer* manager, GDBusObjectSkeleton* object) c_g_dbus_object_manager_server_is_exported;
3048 	void function(GDBusObjectManagerServer* manager, GDBusConnection* connection) c_g_dbus_object_manager_server_set_connection;
3049 	int function(GDBusObjectManagerServer* manager, const(char)* objectPath) c_g_dbus_object_manager_server_unexport;
3050 
3051 	// gio.DBusObjectProxy
3052 
3053 	GType function() c_g_dbus_object_proxy_get_type;
3054 	GDBusObjectProxy* function(GDBusConnection* connection, const(char)* objectPath) c_g_dbus_object_proxy_new;
3055 	GDBusConnection* function(GDBusObjectProxy* proxy) c_g_dbus_object_proxy_get_connection;
3056 
3057 	// gio.DBusObjectSkeleton
3058 
3059 	GType function() c_g_dbus_object_skeleton_get_type;
3060 	GDBusObjectSkeleton* function(const(char)* objectPath) c_g_dbus_object_skeleton_new;
3061 	void function(GDBusObjectSkeleton* object, GDBusInterfaceSkeleton* interface_) c_g_dbus_object_skeleton_add_interface;
3062 	void function(GDBusObjectSkeleton* object) c_g_dbus_object_skeleton_flush;
3063 	void function(GDBusObjectSkeleton* object, GDBusInterfaceSkeleton* interface_) c_g_dbus_object_skeleton_remove_interface;
3064 	void function(GDBusObjectSkeleton* object, const(char)* interfaceName) c_g_dbus_object_skeleton_remove_interface_by_name;
3065 	void function(GDBusObjectSkeleton* object, const(char)* objectPath) c_g_dbus_object_skeleton_set_object_path;
3066 
3067 	// gio.DBusPropertyInfo
3068 
3069 	GType function() c_g_dbus_property_info_get_type;
3070 	GDBusPropertyInfo* function(GDBusPropertyInfo* info) c_g_dbus_property_info_ref;
3071 	void function(GDBusPropertyInfo* info) c_g_dbus_property_info_unref;
3072 
3073 	// gio.DBusProxy
3074 
3075 	GType function() c_g_dbus_proxy_get_type;
3076 	GDBusProxy* function(GAsyncResult* res, GError** err) c_g_dbus_proxy_new_finish;
3077 	GDBusProxy* function(GAsyncResult* res, GError** err) c_g_dbus_proxy_new_for_bus_finish;
3078 	GDBusProxy* function(GBusType busType, GDBusProxyFlags flags, GDBusInterfaceInfo* info, const(char)* name, const(char)* objectPath, const(char)* interfaceName, GCancellable* cancellable, GError** err) c_g_dbus_proxy_new_for_bus_sync;
3079 	GDBusProxy* function(GDBusConnection* connection, GDBusProxyFlags flags, GDBusInterfaceInfo* info, const(char)* name, const(char)* objectPath, const(char)* interfaceName, GCancellable* cancellable, GError** err) c_g_dbus_proxy_new_sync;
3080 	void function(GDBusConnection* connection, GDBusProxyFlags flags, GDBusInterfaceInfo* info, const(char)* name, const(char)* objectPath, const(char)* interfaceName, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_proxy_new;
3081 	void function(GBusType busType, GDBusProxyFlags flags, GDBusInterfaceInfo* info, const(char)* name, const(char)* objectPath, const(char)* interfaceName, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_proxy_new_for_bus;
3082 	void function(GDBusProxy* proxy, const(char)* methodName, GVariant* parameters, GDBusCallFlags flags, int timeoutMsec, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_proxy_call;
3083 	GVariant* function(GDBusProxy* proxy, GAsyncResult* res, GError** err) c_g_dbus_proxy_call_finish;
3084 	GVariant* function(GDBusProxy* proxy, const(char)* methodName, GVariant* parameters, GDBusCallFlags flags, int timeoutMsec, GCancellable* cancellable, GError** err) c_g_dbus_proxy_call_sync;
3085 	void function(GDBusProxy* proxy, const(char)* methodName, GVariant* parameters, GDBusCallFlags flags, int timeoutMsec, GUnixFDList* fdList, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_proxy_call_with_unix_fd_list;
3086 	GVariant* function(GDBusProxy* proxy, GUnixFDList** outFdList, GAsyncResult* res, GError** err) c_g_dbus_proxy_call_with_unix_fd_list_finish;
3087 	GVariant* function(GDBusProxy* proxy, const(char)* methodName, GVariant* parameters, GDBusCallFlags flags, int timeoutMsec, GUnixFDList* fdList, GUnixFDList** outFdList, GCancellable* cancellable, GError** err) c_g_dbus_proxy_call_with_unix_fd_list_sync;
3088 	GVariant* function(GDBusProxy* proxy, const(char)* propertyName) c_g_dbus_proxy_get_cached_property;
3089 	char** function(GDBusProxy* proxy) c_g_dbus_proxy_get_cached_property_names;
3090 	GDBusConnection* function(GDBusProxy* proxy) c_g_dbus_proxy_get_connection;
3091 	int function(GDBusProxy* proxy) c_g_dbus_proxy_get_default_timeout;
3092 	GDBusProxyFlags function(GDBusProxy* proxy) c_g_dbus_proxy_get_flags;
3093 	GDBusInterfaceInfo* function(GDBusProxy* proxy) c_g_dbus_proxy_get_interface_info;
3094 	const(char)* function(GDBusProxy* proxy) c_g_dbus_proxy_get_interface_name;
3095 	const(char)* function(GDBusProxy* proxy) c_g_dbus_proxy_get_name;
3096 	char* function(GDBusProxy* proxy) c_g_dbus_proxy_get_name_owner;
3097 	const(char)* function(GDBusProxy* proxy) c_g_dbus_proxy_get_object_path;
3098 	void function(GDBusProxy* proxy, const(char)* propertyName, GVariant* value) c_g_dbus_proxy_set_cached_property;
3099 	void function(GDBusProxy* proxy, int timeoutMsec) c_g_dbus_proxy_set_default_timeout;
3100 	void function(GDBusProxy* proxy, GDBusInterfaceInfo* info) c_g_dbus_proxy_set_interface_info;
3101 
3102 	// gio.DBusServer
3103 
3104 	GType function() c_g_dbus_server_get_type;
3105 	GDBusServer* function(const(char)* address, GDBusServerFlags flags, const(char)* guid, GDBusAuthObserver* observer, GCancellable* cancellable, GError** err) c_g_dbus_server_new_sync;
3106 	const(char)* function(GDBusServer* server) c_g_dbus_server_get_client_address;
3107 	GDBusServerFlags function(GDBusServer* server) c_g_dbus_server_get_flags;
3108 	const(char)* function(GDBusServer* server) c_g_dbus_server_get_guid;
3109 	int function(GDBusServer* server) c_g_dbus_server_is_active;
3110 	void function(GDBusServer* server) c_g_dbus_server_start;
3111 	void function(GDBusServer* server) c_g_dbus_server_stop;
3112 
3113 	// gio.DBusSignalInfo
3114 
3115 	GType function() c_g_dbus_signal_info_get_type;
3116 	GDBusSignalInfo* function(GDBusSignalInfo* info) c_g_dbus_signal_info_ref;
3117 	void function(GDBusSignalInfo* info) c_g_dbus_signal_info_unref;
3118 
3119 	// gio.DataInputStream
3120 
3121 	GType function() c_g_data_input_stream_get_type;
3122 	GDataInputStream* function(GInputStream* baseStream) c_g_data_input_stream_new;
3123 	GDataStreamByteOrder function(GDataInputStream* stream) c_g_data_input_stream_get_byte_order;
3124 	GDataStreamNewlineType function(GDataInputStream* stream) c_g_data_input_stream_get_newline_type;
3125 	char function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_byte;
3126 	short function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_int16;
3127 	int function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_int32;
3128 	long function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_int64;
3129 	char* function(GDataInputStream* stream, size_t* length, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_line;
3130 	void function(GDataInputStream* stream, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_data_input_stream_read_line_async;
3131 	char* function(GDataInputStream* stream, GAsyncResult* result, size_t* length, GError** err) c_g_data_input_stream_read_line_finish;
3132 	char* function(GDataInputStream* stream, GAsyncResult* result, size_t* length, GError** err) c_g_data_input_stream_read_line_finish_utf8;
3133 	char* function(GDataInputStream* stream, size_t* length, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_line_utf8;
3134 	ushort function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_uint16;
3135 	uint function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_uint32;
3136 	ulong function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_uint64;
3137 	char* function(GDataInputStream* stream, const(char)* stopChars, size_t* length, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_until;
3138 	void function(GDataInputStream* stream, const(char)* stopChars, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_data_input_stream_read_until_async;
3139 	char* function(GDataInputStream* stream, GAsyncResult* result, size_t* length, GError** err) c_g_data_input_stream_read_until_finish;
3140 	char* function(GDataInputStream* stream, const(char)* stopChars, ptrdiff_t stopCharsLen, size_t* length, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_upto;
3141 	void function(GDataInputStream* stream, const(char)* stopChars, ptrdiff_t stopCharsLen, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_data_input_stream_read_upto_async;
3142 	char* function(GDataInputStream* stream, GAsyncResult* result, size_t* length, GError** err) c_g_data_input_stream_read_upto_finish;
3143 	void function(GDataInputStream* stream, GDataStreamByteOrder order) c_g_data_input_stream_set_byte_order;
3144 	void function(GDataInputStream* stream, GDataStreamNewlineType type) c_g_data_input_stream_set_newline_type;
3145 
3146 	// gio.DataOutputStream
3147 
3148 	GType function() c_g_data_output_stream_get_type;
3149 	GDataOutputStream* function(GOutputStream* baseStream) c_g_data_output_stream_new;
3150 	GDataStreamByteOrder function(GDataOutputStream* stream) c_g_data_output_stream_get_byte_order;
3151 	int function(GDataOutputStream* stream, char data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_byte;
3152 	int function(GDataOutputStream* stream, short data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_int16;
3153 	int function(GDataOutputStream* stream, int data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_int32;
3154 	int function(GDataOutputStream* stream, long data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_int64;
3155 	int function(GDataOutputStream* stream, const(char)* str, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_string;
3156 	int function(GDataOutputStream* stream, ushort data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_uint16;
3157 	int function(GDataOutputStream* stream, uint data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_uint32;
3158 	int function(GDataOutputStream* stream, ulong data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_uint64;
3159 	void function(GDataOutputStream* stream, GDataStreamByteOrder order) c_g_data_output_stream_set_byte_order;
3160 
3161 	// gio.DatagramBased
3162 
3163 	GType function() c_g_datagram_based_get_type;
3164 	GIOCondition function(GDatagramBased* datagramBased, GIOCondition condition) c_g_datagram_based_condition_check;
3165 	int function(GDatagramBased* datagramBased, GIOCondition condition, long timeout, GCancellable* cancellable, GError** err) c_g_datagram_based_condition_wait;
3166 	GSource* function(GDatagramBased* datagramBased, GIOCondition condition, GCancellable* cancellable) c_g_datagram_based_create_source;
3167 	int function(GDatagramBased* datagramBased, GInputMessage* messages, uint numMessages, int flags, long timeout, GCancellable* cancellable, GError** err) c_g_datagram_based_receive_messages;
3168 	int function(GDatagramBased* datagramBased, GOutputMessage* messages, uint numMessages, int flags, long timeout, GCancellable* cancellable, GError** err) c_g_datagram_based_send_messages;
3169 
3170 	// gio.DebugController
3171 
3172 	GType function() c_g_debug_controller_get_type;
3173 	int function(GDebugController* self) c_g_debug_controller_get_debug_enabled;
3174 	void function(GDebugController* self, int debugEnabled) c_g_debug_controller_set_debug_enabled;
3175 
3176 	// gio.DebugControllerDBus
3177 
3178 	GType function() c_g_debug_controller_dbus_get_type;
3179 	GDebugControllerDBus* function(GDBusConnection* connection, GCancellable* cancellable, GError** err) c_g_debug_controller_dbus_new;
3180 	void function(GDebugControllerDBus* self) c_g_debug_controller_dbus_stop;
3181 
3182 	// gio.DesktopAppInfo
3183 
3184 	GType function() c_g_desktop_app_info_get_type;
3185 	GDesktopAppInfo* function(const(char)* desktopId) c_g_desktop_app_info_new;
3186 	GDesktopAppInfo* function(char* filename) c_g_desktop_app_info_new_from_filename;
3187 	GDesktopAppInfo* function(GKeyFile* keyFile) c_g_desktop_app_info_new_from_keyfile;
3188 	GList* function(const(char)* interface_) c_g_desktop_app_info_get_implementations;
3189 	char*** function(const(char)* searchString) c_g_desktop_app_info_search;
3190 	void function(const(char)* desktopEnv) c_g_desktop_app_info_set_desktop_env;
3191 	char* function(GDesktopAppInfo* info, const(char)* actionName) c_g_desktop_app_info_get_action_name;
3192 	int function(GDesktopAppInfo* info, const(char)* key) c_g_desktop_app_info_get_boolean;
3193 	const(char)* function(GDesktopAppInfo* info) c_g_desktop_app_info_get_categories;
3194 	char* function(GDesktopAppInfo* info) c_g_desktop_app_info_get_filename;
3195 	const(char)* function(GDesktopAppInfo* info) c_g_desktop_app_info_get_generic_name;
3196 	int function(GDesktopAppInfo* info) c_g_desktop_app_info_get_is_hidden;
3197 	char** function(GDesktopAppInfo* info) c_g_desktop_app_info_get_keywords;
3198 	char* function(GDesktopAppInfo* info, const(char)* key) c_g_desktop_app_info_get_locale_string;
3199 	int function(GDesktopAppInfo* info) c_g_desktop_app_info_get_nodisplay;
3200 	int function(GDesktopAppInfo* info, const(char)* desktopEnv) c_g_desktop_app_info_get_show_in;
3201 	const(char)* function(GDesktopAppInfo* info) c_g_desktop_app_info_get_startup_wm_class;
3202 	char* function(GDesktopAppInfo* info, const(char)* key) c_g_desktop_app_info_get_string;
3203 	char** function(GDesktopAppInfo* info, const(char)* key, size_t* length) c_g_desktop_app_info_get_string_list;
3204 	int function(GDesktopAppInfo* info, const(char)* key) c_g_desktop_app_info_has_key;
3205 	void function(GDesktopAppInfo* info, const(char)* actionName, GAppLaunchContext* launchContext) c_g_desktop_app_info_launch_action;
3206 	int function(GDesktopAppInfo* appinfo, GList* uris, GAppLaunchContext* launchContext, GSpawnFlags spawnFlags, GSpawnChildSetupFunc userSetup, void* userSetupData, GDesktopAppLaunchCallback pidCallback, void* pidCallbackData, GError** err) c_g_desktop_app_info_launch_uris_as_manager;
3207 	int function(GDesktopAppInfo* appinfo, GList* uris, GAppLaunchContext* launchContext, GSpawnFlags spawnFlags, GSpawnChildSetupFunc userSetup, void* userSetupData, GDesktopAppLaunchCallback pidCallback, void* pidCallbackData, int stdinFd, int stdoutFd, int stderrFd, GError** err) c_g_desktop_app_info_launch_uris_as_manager_with_fds;
3208 	char** function(GDesktopAppInfo* info) c_g_desktop_app_info_list_actions;
3209 
3210 	// gio.DesktopAppInfoLookup
3211 
3212 	GType function() c_g_desktop_app_info_lookup_get_type;
3213 	GAppInfo* function(GDesktopAppInfoLookup* lookup, const(char)* uriScheme) c_g_desktop_app_info_lookup_get_default_for_uri_scheme;
3214 
3215 	// gio.Drive
3216 
3217 	GType function() c_g_drive_get_type;
3218 	int function(GDrive* drive) c_g_drive_can_eject;
3219 	int function(GDrive* drive) c_g_drive_can_poll_for_media;
3220 	int function(GDrive* drive) c_g_drive_can_start;
3221 	int function(GDrive* drive) c_g_drive_can_start_degraded;
3222 	int function(GDrive* drive) c_g_drive_can_stop;
3223 	void function(GDrive* drive, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_drive_eject;
3224 	int function(GDrive* drive, GAsyncResult* result, GError** err) c_g_drive_eject_finish;
3225 	void function(GDrive* drive, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_drive_eject_with_operation;
3226 	int function(GDrive* drive, GAsyncResult* result, GError** err) c_g_drive_eject_with_operation_finish;
3227 	char** function(GDrive* drive) c_g_drive_enumerate_identifiers;
3228 	GIcon* function(GDrive* drive) c_g_drive_get_icon;
3229 	char* function(GDrive* drive, const(char)* kind) c_g_drive_get_identifier;
3230 	char* function(GDrive* drive) c_g_drive_get_name;
3231 	const(char)* function(GDrive* drive) c_g_drive_get_sort_key;
3232 	GDriveStartStopType function(GDrive* drive) c_g_drive_get_start_stop_type;
3233 	GIcon* function(GDrive* drive) c_g_drive_get_symbolic_icon;
3234 	GList* function(GDrive* drive) c_g_drive_get_volumes;
3235 	int function(GDrive* drive) c_g_drive_has_media;
3236 	int function(GDrive* drive) c_g_drive_has_volumes;
3237 	int function(GDrive* drive) c_g_drive_is_media_check_automatic;
3238 	int function(GDrive* drive) c_g_drive_is_media_removable;
3239 	int function(GDrive* drive) c_g_drive_is_removable;
3240 	void function(GDrive* drive, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_drive_poll_for_media;
3241 	int function(GDrive* drive, GAsyncResult* result, GError** err) c_g_drive_poll_for_media_finish;
3242 	void function(GDrive* drive, GDriveStartFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_drive_start;
3243 	int function(GDrive* drive, GAsyncResult* result, GError** err) c_g_drive_start_finish;
3244 	void function(GDrive* drive, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_drive_stop;
3245 	int function(GDrive* drive, GAsyncResult* result, GError** err) c_g_drive_stop_finish;
3246 
3247 	// gio.DtlsClientConnection
3248 
3249 	GType function() c_g_dtls_client_connection_get_type;
3250 	GDatagramBased* function(GDatagramBased* baseSocket, GSocketConnectable* serverIdentity, GError** err) c_g_dtls_client_connection_new;
3251 	GList* function(GDtlsClientConnection* conn) c_g_dtls_client_connection_get_accepted_cas;
3252 	GSocketConnectable* function(GDtlsClientConnection* conn) c_g_dtls_client_connection_get_server_identity;
3253 	GTlsCertificateFlags function(GDtlsClientConnection* conn) c_g_dtls_client_connection_get_validation_flags;
3254 	void function(GDtlsClientConnection* conn, GSocketConnectable* identity) c_g_dtls_client_connection_set_server_identity;
3255 	void function(GDtlsClientConnection* conn, GTlsCertificateFlags flags) c_g_dtls_client_connection_set_validation_flags;
3256 
3257 	// gio.DtlsConnection
3258 
3259 	GType function() c_g_dtls_connection_get_type;
3260 	int function(GDtlsConnection* conn, GCancellable* cancellable, GError** err) c_g_dtls_connection_close;
3261 	void function(GDtlsConnection* conn, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dtls_connection_close_async;
3262 	int function(GDtlsConnection* conn, GAsyncResult* result, GError** err) c_g_dtls_connection_close_finish;
3263 	int function(GDtlsConnection* conn, GTlsCertificate* peerCert, GTlsCertificateFlags errors) c_g_dtls_connection_emit_accept_certificate;
3264 	GTlsCertificate* function(GDtlsConnection* conn) c_g_dtls_connection_get_certificate;
3265 	int function(GDtlsConnection* conn, GTlsChannelBindingType type, GByteArray* data, GError** err) c_g_dtls_connection_get_channel_binding_data;
3266 	char* function(GDtlsConnection* conn) c_g_dtls_connection_get_ciphersuite_name;
3267 	GTlsDatabase* function(GDtlsConnection* conn) c_g_dtls_connection_get_database;
3268 	GTlsInteraction* function(GDtlsConnection* conn) c_g_dtls_connection_get_interaction;
3269 	const(char)* function(GDtlsConnection* conn) c_g_dtls_connection_get_negotiated_protocol;
3270 	GTlsCertificate* function(GDtlsConnection* conn) c_g_dtls_connection_get_peer_certificate;
3271 	GTlsCertificateFlags function(GDtlsConnection* conn) c_g_dtls_connection_get_peer_certificate_errors;
3272 	GTlsProtocolVersion function(GDtlsConnection* conn) c_g_dtls_connection_get_protocol_version;
3273 	GTlsRehandshakeMode function(GDtlsConnection* conn) c_g_dtls_connection_get_rehandshake_mode;
3274 	int function(GDtlsConnection* conn) c_g_dtls_connection_get_require_close_notify;
3275 	int function(GDtlsConnection* conn, GCancellable* cancellable, GError** err) c_g_dtls_connection_handshake;
3276 	void function(GDtlsConnection* conn, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dtls_connection_handshake_async;
3277 	int function(GDtlsConnection* conn, GAsyncResult* result, GError** err) c_g_dtls_connection_handshake_finish;
3278 	void function(GDtlsConnection* conn, char** protocols) c_g_dtls_connection_set_advertised_protocols;
3279 	void function(GDtlsConnection* conn, GTlsCertificate* certificate) c_g_dtls_connection_set_certificate;
3280 	void function(GDtlsConnection* conn, GTlsDatabase* database) c_g_dtls_connection_set_database;
3281 	void function(GDtlsConnection* conn, GTlsInteraction* interaction) c_g_dtls_connection_set_interaction;
3282 	void function(GDtlsConnection* conn, GTlsRehandshakeMode mode) c_g_dtls_connection_set_rehandshake_mode;
3283 	void function(GDtlsConnection* conn, int requireCloseNotify) c_g_dtls_connection_set_require_close_notify;
3284 	int function(GDtlsConnection* conn, int shutdownRead, int shutdownWrite, GCancellable* cancellable, GError** err) c_g_dtls_connection_shutdown;
3285 	void function(GDtlsConnection* conn, int shutdownRead, int shutdownWrite, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dtls_connection_shutdown_async;
3286 	int function(GDtlsConnection* conn, GAsyncResult* result, GError** err) c_g_dtls_connection_shutdown_finish;
3287 
3288 	// gio.DtlsServerConnection
3289 
3290 	GType function() c_g_dtls_server_connection_get_type;
3291 	GDatagramBased* function(GDatagramBased* baseSocket, GTlsCertificate* certificate, GError** err) c_g_dtls_server_connection_new;
3292 
3293 	// gio.Emblem
3294 
3295 	GType function() c_g_emblem_get_type;
3296 	GEmblem* function(GIcon* icon) c_g_emblem_new;
3297 	GEmblem* function(GIcon* icon, GEmblemOrigin origin) c_g_emblem_new_with_origin;
3298 	GIcon* function(GEmblem* emblem) c_g_emblem_get_icon;
3299 	GEmblemOrigin function(GEmblem* emblem) c_g_emblem_get_origin;
3300 
3301 	// gio.EmblemedIcon
3302 
3303 	GType function() c_g_emblemed_icon_get_type;
3304 	GIcon* function(GIcon* icon, GEmblem* emblem) c_g_emblemed_icon_new;
3305 	void function(GEmblemedIcon* emblemed, GEmblem* emblem) c_g_emblemed_icon_add_emblem;
3306 	void function(GEmblemedIcon* emblemed) c_g_emblemed_icon_clear_emblems;
3307 	GList* function(GEmblemedIcon* emblemed) c_g_emblemed_icon_get_emblems;
3308 	GIcon* function(GEmblemedIcon* emblemed) c_g_emblemed_icon_get_icon;
3309 
3310 	// gio.File
3311 
3312 	GType function() c_g_file_get_type;
3313 	GFile* function(char* firstElement, ... ) c_g_file_new_build_filename;
3314 	GFile* function(char* arg) c_g_file_new_for_commandline_arg;
3315 	GFile* function(char* arg, char* cwd) c_g_file_new_for_commandline_arg_and_cwd;
3316 	GFile* function(char* path) c_g_file_new_for_path;
3317 	GFile* function(const(char)* uri) c_g_file_new_for_uri;
3318 	GFile* function(char* tmpl, GFileIOStream** iostream, GError** err) c_g_file_new_tmp;
3319 	GFile* function(const(char)* parseName) c_g_file_parse_name;
3320 	GFileOutputStream* function(GFile* file, GFileCreateFlags flags, GCancellable* cancellable, GError** err) c_g_file_append_to;
3321 	void function(GFile* file, GFileCreateFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_append_to_async;
3322 	GFileOutputStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_append_to_finish;
3323 	char* function(GFile* file, GFileCopyFlags flags, GCancellable* cancellable, GError** err) c_g_file_build_attribute_list_for_copy;
3324 	int function(GFile* source, GFile* destination, GFileCopyFlags flags, GCancellable* cancellable, GFileProgressCallback progressCallback, void* progressCallbackData, GError** err) c_g_file_copy;
3325 	void function(GFile* source, GFile* destination, GFileCopyFlags flags, int ioPriority, GCancellable* cancellable, GFileProgressCallback progressCallback, void* progressCallbackData, GAsyncReadyCallback callback, void* userData) c_g_file_copy_async;
3326 	int function(GFile* source, GFile* destination, GFileCopyFlags flags, GCancellable* cancellable, GError** err) c_g_file_copy_attributes;
3327 	int function(GFile* file, GAsyncResult* res, GError** err) c_g_file_copy_finish;
3328 	GFileOutputStream* function(GFile* file, GFileCreateFlags flags, GCancellable* cancellable, GError** err) c_g_file_create;
3329 	void function(GFile* file, GFileCreateFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_create_async;
3330 	GFileOutputStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_create_finish;
3331 	GFileIOStream* function(GFile* file, GFileCreateFlags flags, GCancellable* cancellable, GError** err) c_g_file_create_readwrite;
3332 	void function(GFile* file, GFileCreateFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_create_readwrite_async;
3333 	GFileIOStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_create_readwrite_finish;
3334 	int function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_delete;
3335 	void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_delete_async;
3336 	int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_delete_finish;
3337 	GFile* function(GFile* file) c_g_file_dup;
3338 	void function(GFile* file, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_eject_mountable;
3339 	int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_eject_mountable_finish;
3340 	void function(GFile* file, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_eject_mountable_with_operation;
3341 	int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_eject_mountable_with_operation_finish;
3342 	GFileEnumerator* function(GFile* file, const(char)* attributes, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_enumerate_children;
3343 	void function(GFile* file, const(char)* attributes, GFileQueryInfoFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_enumerate_children_async;
3344 	GFileEnumerator* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_enumerate_children_finish;
3345 	int function(GFile* file1, GFile* file2) c_g_file_equal;
3346 	GMount* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_find_enclosing_mount;
3347 	void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_find_enclosing_mount_async;
3348 	GMount* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_find_enclosing_mount_finish;
3349 	char* function(GFile* file) c_g_file_get_basename;
3350 	GFile* function(GFile* file, char* name) c_g_file_get_child;
3351 	GFile* function(GFile* file, const(char)* displayName, GError** err) c_g_file_get_child_for_display_name;
3352 	GFile* function(GFile* file) c_g_file_get_parent;
3353 	char* function(GFile* file) c_g_file_get_parse_name;
3354 	char* function(GFile* file) c_g_file_get_path;
3355 	char* function(GFile* parent, GFile* descendant) c_g_file_get_relative_path;
3356 	char* function(GFile* file) c_g_file_get_uri;
3357 	char* function(GFile* file) c_g_file_get_uri_scheme;
3358 	int function(GFile* file, GFile* parent) c_g_file_has_parent;
3359 	int function(GFile* file, GFile* prefix) c_g_file_has_prefix;
3360 	int function(GFile* file, const(char)* uriScheme) c_g_file_has_uri_scheme;
3361 	uint function(void* file) c_g_file_hash;
3362 	int function(GFile* file) c_g_file_is_native;
3363 	GBytes* function(GFile* file, GCancellable* cancellable, char** etagOut, GError** err) c_g_file_load_bytes;
3364 	void function(GFile* file, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_load_bytes_async;
3365 	GBytes* function(GFile* file, GAsyncResult* result, char** etagOut, GError** err) c_g_file_load_bytes_finish;
3366 	int function(GFile* file, GCancellable* cancellable, char** contents, size_t* length, char** etagOut, GError** err) c_g_file_load_contents;
3367 	void function(GFile* file, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_load_contents_async;
3368 	int function(GFile* file, GAsyncResult* res, char** contents, size_t* length, char** etagOut, GError** err) c_g_file_load_contents_finish;
3369 	void function(GFile* file, GCancellable* cancellable, GFileReadMoreCallback readMoreCallback, GAsyncReadyCallback callback, void* userData) c_g_file_load_partial_contents_async;
3370 	int function(GFile* file, GAsyncResult* res, char** contents, size_t* length, char** etagOut, GError** err) c_g_file_load_partial_contents_finish;
3371 	int function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_make_directory;
3372 	void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_make_directory_async;
3373 	int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_make_directory_finish;
3374 	int function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_make_directory_with_parents;
3375 	int function(GFile* file, char* symlinkValue, GCancellable* cancellable, GError** err) c_g_file_make_symbolic_link;
3376 	int function(GFile* file, GFileMeasureFlags flags, GCancellable* cancellable, GFileMeasureProgressCallback progressCallback, void* progressData, ulong* diskUsage, ulong* numDirs, ulong* numFiles, GError** err) c_g_file_measure_disk_usage;
3377 	void function(GFile* file, GFileMeasureFlags flags, int ioPriority, GCancellable* cancellable, GFileMeasureProgressCallback progressCallback, void* progressData, GAsyncReadyCallback callback, void* userData) c_g_file_measure_disk_usage_async;
3378 	int function(GFile* file, GAsyncResult* result, ulong* diskUsage, ulong* numDirs, ulong* numFiles, GError** err) c_g_file_measure_disk_usage_finish;
3379 	GFileMonitor* function(GFile* file, GFileMonitorFlags flags, GCancellable* cancellable, GError** err) c_g_file_monitor;
3380 	GFileMonitor* function(GFile* file, GFileMonitorFlags flags, GCancellable* cancellable, GError** err) c_g_file_monitor_directory;
3381 	GFileMonitor* function(GFile* file, GFileMonitorFlags flags, GCancellable* cancellable, GError** err) c_g_file_monitor_file;
3382 	void function(GFile* location, GMountMountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_mount_enclosing_volume;
3383 	int function(GFile* location, GAsyncResult* result, GError** err) c_g_file_mount_enclosing_volume_finish;
3384 	void function(GFile* file, GMountMountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_mount_mountable;
3385 	GFile* function(GFile* file, GAsyncResult* result, GError** err) c_g_file_mount_mountable_finish;
3386 	int function(GFile* source, GFile* destination, GFileCopyFlags flags, GCancellable* cancellable, GFileProgressCallback progressCallback, void* progressCallbackData, GError** err) c_g_file_move;
3387 	void function(GFile* source, GFile* destination, GFileCopyFlags flags, int ioPriority, GCancellable* cancellable, GFileProgressCallback progressCallback, void* progressCallbackData, GAsyncReadyCallback callback, void* userData) c_g_file_move_async;
3388 	int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_move_finish;
3389 	GFileIOStream* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_open_readwrite;
3390 	void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_open_readwrite_async;
3391 	GFileIOStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_open_readwrite_finish;
3392 	char* function(GFile* file) c_g_file_peek_path;
3393 	void function(GFile* file, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_poll_mountable;
3394 	int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_poll_mountable_finish;
3395 	GAppInfo* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_query_default_handler;
3396 	void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_query_default_handler_async;
3397 	GAppInfo* function(GFile* file, GAsyncResult* result, GError** err) c_g_file_query_default_handler_finish;
3398 	int function(GFile* file, GCancellable* cancellable) c_g_file_query_exists;
3399 	GFileType function(GFile* file, GFileQueryInfoFlags flags, GCancellable* cancellable) c_g_file_query_file_type;
3400 	GFileInfo* function(GFile* file, const(char)* attributes, GCancellable* cancellable, GError** err) c_g_file_query_filesystem_info;
3401 	void function(GFile* file, const(char)* attributes, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_query_filesystem_info_async;
3402 	GFileInfo* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_query_filesystem_info_finish;
3403 	GFileInfo* function(GFile* file, const(char)* attributes, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_query_info;
3404 	void function(GFile* file, const(char)* attributes, GFileQueryInfoFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_query_info_async;
3405 	GFileInfo* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_query_info_finish;
3406 	GFileAttributeInfoList* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_query_settable_attributes;
3407 	GFileAttributeInfoList* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_query_writable_namespaces;
3408 	GFileInputStream* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_read;
3409 	void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_read_async;
3410 	GFileInputStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_read_finish;
3411 	GFileOutputStream* function(GFile* file, const(char)* etag, int makeBackup, GFileCreateFlags flags, GCancellable* cancellable, GError** err) c_g_file_replace;
3412 	void function(GFile* file, const(char)* etag, int makeBackup, GFileCreateFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_replace_async;
3413 	int function(GFile* file, char* contents, size_t length, const(char)* etag, int makeBackup, GFileCreateFlags flags, char** newEtag, GCancellable* cancellable, GError** err) c_g_file_replace_contents;
3414 	void function(GFile* file, char* contents, size_t length, const(char)* etag, int makeBackup, GFileCreateFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_replace_contents_async;
3415 	void function(GFile* file, GBytes* contents, const(char)* etag, int makeBackup, GFileCreateFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_replace_contents_bytes_async;
3416 	int function(GFile* file, GAsyncResult* res, char** newEtag, GError** err) c_g_file_replace_contents_finish;
3417 	GFileOutputStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_replace_finish;
3418 	GFileIOStream* function(GFile* file, const(char)* etag, int makeBackup, GFileCreateFlags flags, GCancellable* cancellable, GError** err) c_g_file_replace_readwrite;
3419 	void function(GFile* file, const(char)* etag, int makeBackup, GFileCreateFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_replace_readwrite_async;
3420 	GFileIOStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_replace_readwrite_finish;
3421 	GFile* function(GFile* file, char* relativePath) c_g_file_resolve_relative_path;
3422 	int function(GFile* file, const(char)* attribute, GFileAttributeType type, void* valueP, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute;
3423 	int function(GFile* file, const(char)* attribute, const(char)* value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_byte_string;
3424 	int function(GFile* file, const(char)* attribute, int value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_int32;
3425 	int function(GFile* file, const(char)* attribute, long value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_int64;
3426 	int function(GFile* file, const(char)* attribute, const(char)* value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_string;
3427 	int function(GFile* file, const(char)* attribute, uint value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_uint32;
3428 	int function(GFile* file, const(char)* attribute, ulong value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_uint64;
3429 	void function(GFile* file, GFileInfo* info, GFileQueryInfoFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_set_attributes_async;
3430 	int function(GFile* file, GAsyncResult* result, GFileInfo** info, GError** err) c_g_file_set_attributes_finish;
3431 	int function(GFile* file, GFileInfo* info, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attributes_from_info;
3432 	GFile* function(GFile* file, const(char)* displayName, GCancellable* cancellable, GError** err) c_g_file_set_display_name;
3433 	void function(GFile* file, const(char)* displayName, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_set_display_name_async;
3434 	GFile* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_set_display_name_finish;
3435 	void function(GFile* file, GDriveStartFlags flags, GMountOperation* startOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_start_mountable;
3436 	int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_start_mountable_finish;
3437 	void function(GFile* file, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_stop_mountable;
3438 	int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_stop_mountable_finish;
3439 	int function(GFile* file) c_g_file_supports_thread_contexts;
3440 	int function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_trash;
3441 	void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_trash_async;
3442 	int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_trash_finish;
3443 	void function(GFile* file, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_unmount_mountable;
3444 	int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_unmount_mountable_finish;
3445 	void function(GFile* file, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_unmount_mountable_with_operation;
3446 	int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_unmount_mountable_with_operation_finish;
3447 
3448 	// gio.FileAttributeInfoList
3449 
3450 	GType function() c_g_file_attribute_info_list_get_type;
3451 	GFileAttributeInfoList* function() c_g_file_attribute_info_list_new;
3452 	void function(GFileAttributeInfoList* list, const(char)* name, GFileAttributeType type, GFileAttributeInfoFlags flags) c_g_file_attribute_info_list_add;
3453 	GFileAttributeInfoList* function(GFileAttributeInfoList* list) c_g_file_attribute_info_list_dup;
3454 	GFileAttributeInfo* function(GFileAttributeInfoList* list, const(char)* name) c_g_file_attribute_info_list_lookup;
3455 	GFileAttributeInfoList* function(GFileAttributeInfoList* list) c_g_file_attribute_info_list_ref;
3456 	void function(GFileAttributeInfoList* list) c_g_file_attribute_info_list_unref;
3457 
3458 	// gio.FileAttributeMatcher
3459 
3460 	GType function() c_g_file_attribute_matcher_get_type;
3461 	GFileAttributeMatcher* function(const(char)* attributes) c_g_file_attribute_matcher_new;
3462 	int function(GFileAttributeMatcher* matcher, const(char)* ns) c_g_file_attribute_matcher_enumerate_namespace;
3463 	const(char)* function(GFileAttributeMatcher* matcher) c_g_file_attribute_matcher_enumerate_next;
3464 	int function(GFileAttributeMatcher* matcher, const(char)* attribute) c_g_file_attribute_matcher_matches;
3465 	int function(GFileAttributeMatcher* matcher, const(char)* attribute) c_g_file_attribute_matcher_matches_only;
3466 	GFileAttributeMatcher* function(GFileAttributeMatcher* matcher) c_g_file_attribute_matcher_ref;
3467 	GFileAttributeMatcher* function(GFileAttributeMatcher* matcher, GFileAttributeMatcher* subtract) c_g_file_attribute_matcher_subtract;
3468 	char* function(GFileAttributeMatcher* matcher) c_g_file_attribute_matcher_to_string;
3469 	void function(GFileAttributeMatcher* matcher) c_g_file_attribute_matcher_unref;
3470 
3471 	// gio.FileDescriptorBased
3472 
3473 	GType function() c_g_file_descriptor_based_get_type;
3474 	int function(GFileDescriptorBased* fdBased) c_g_file_descriptor_based_get_fd;
3475 
3476 	// gio.FileEnumerator
3477 
3478 	GType function() c_g_file_enumerator_get_type;
3479 	int function(GFileEnumerator* enumerator, GCancellable* cancellable, GError** err) c_g_file_enumerator_close;
3480 	void function(GFileEnumerator* enumerator, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_enumerator_close_async;
3481 	int function(GFileEnumerator* enumerator, GAsyncResult* result, GError** err) c_g_file_enumerator_close_finish;
3482 	GFile* function(GFileEnumerator* enumerator, GFileInfo* info) c_g_file_enumerator_get_child;
3483 	GFile* function(GFileEnumerator* enumerator) c_g_file_enumerator_get_container;
3484 	int function(GFileEnumerator* enumerator) c_g_file_enumerator_has_pending;
3485 	int function(GFileEnumerator* enumerator) c_g_file_enumerator_is_closed;
3486 	int function(GFileEnumerator* direnum, GFileInfo** outInfo, GFile** outChild, GCancellable* cancellable, GError** err) c_g_file_enumerator_iterate;
3487 	GFileInfo* function(GFileEnumerator* enumerator, GCancellable* cancellable, GError** err) c_g_file_enumerator_next_file;
3488 	void function(GFileEnumerator* enumerator, int numFiles, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_enumerator_next_files_async;
3489 	GList* function(GFileEnumerator* enumerator, GAsyncResult* result, GError** err) c_g_file_enumerator_next_files_finish;
3490 	void function(GFileEnumerator* enumerator, int pending) c_g_file_enumerator_set_pending;
3491 
3492 	// gio.FileIOStream
3493 
3494 	GType function() c_g_file_io_stream_get_type;
3495 	char* function(GFileIOStream* stream) c_g_file_io_stream_get_etag;
3496 	GFileInfo* function(GFileIOStream* stream, const(char)* attributes, GCancellable* cancellable, GError** err) c_g_file_io_stream_query_info;
3497 	void function(GFileIOStream* stream, const(char)* attributes, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_io_stream_query_info_async;
3498 	GFileInfo* function(GFileIOStream* stream, GAsyncResult* result, GError** err) c_g_file_io_stream_query_info_finish;
3499 
3500 	// gio.FileIcon
3501 
3502 	GType function() c_g_file_icon_get_type;
3503 	GIcon* function(GFile* file) c_g_file_icon_new;
3504 	GFile* function(GFileIcon* icon) c_g_file_icon_get_file;
3505 
3506 	// gio.FileInfo
3507 
3508 	GType function() c_g_file_info_get_type;
3509 	GFileInfo* function() c_g_file_info_new;
3510 	void function(GFileInfo* info) c_g_file_info_clear_status;
3511 	void function(GFileInfo* srcInfo, GFileInfo* destInfo) c_g_file_info_copy_into;
3512 	GFileInfo* function(GFileInfo* other) c_g_file_info_dup;
3513 	GDateTime* function(GFileInfo* info) c_g_file_info_get_access_date_time;
3514 	char* function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_as_string;
3515 	int function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_boolean;
3516 	const(char)* function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_byte_string;
3517 	int function(GFileInfo* info, const(char)* attribute, GFileAttributeType* type, void** valuePp, GFileAttributeStatus* status) c_g_file_info_get_attribute_data;
3518 	int function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_int32;
3519 	long function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_int64;
3520 	GObject* function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_object;
3521 	GFileAttributeStatus function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_status;
3522 	const(char)* function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_string;
3523 	char** function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_stringv;
3524 	GFileAttributeType function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_type;
3525 	uint function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_uint32;
3526 	ulong function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_uint64;
3527 	const(char)* function(GFileInfo* info) c_g_file_info_get_content_type;
3528 	GDateTime* function(GFileInfo* info) c_g_file_info_get_creation_date_time;
3529 	GDateTime* function(GFileInfo* info) c_g_file_info_get_deletion_date;
3530 	const(char)* function(GFileInfo* info) c_g_file_info_get_display_name;
3531 	const(char)* function(GFileInfo* info) c_g_file_info_get_edit_name;
3532 	const(char)* function(GFileInfo* info) c_g_file_info_get_etag;
3533 	GFileType function(GFileInfo* info) c_g_file_info_get_file_type;
3534 	GIcon* function(GFileInfo* info) c_g_file_info_get_icon;
3535 	int function(GFileInfo* info) c_g_file_info_get_is_backup;
3536 	int function(GFileInfo* info) c_g_file_info_get_is_hidden;
3537 	int function(GFileInfo* info) c_g_file_info_get_is_symlink;
3538 	GDateTime* function(GFileInfo* info) c_g_file_info_get_modification_date_time;
3539 	void function(GFileInfo* info, GTimeVal* result) c_g_file_info_get_modification_time;
3540 	char* function(GFileInfo* info) c_g_file_info_get_name;
3541 	long function(GFileInfo* info) c_g_file_info_get_size;
3542 	int function(GFileInfo* info) c_g_file_info_get_sort_order;
3543 	GIcon* function(GFileInfo* info) c_g_file_info_get_symbolic_icon;
3544 	const(char)* function(GFileInfo* info) c_g_file_info_get_symlink_target;
3545 	int function(GFileInfo* info, const(char)* attribute) c_g_file_info_has_attribute;
3546 	int function(GFileInfo* info, const(char)* nameSpace) c_g_file_info_has_namespace;
3547 	char** function(GFileInfo* info, const(char)* nameSpace) c_g_file_info_list_attributes;
3548 	void function(GFileInfo* info, const(char)* attribute) c_g_file_info_remove_attribute;
3549 	void function(GFileInfo* info, GDateTime* atime) c_g_file_info_set_access_date_time;
3550 	void function(GFileInfo* info, const(char)* attribute, GFileAttributeType type, void* valueP) c_g_file_info_set_attribute;
3551 	void function(GFileInfo* info, const(char)* attribute, int attrValue) c_g_file_info_set_attribute_boolean;
3552 	void function(GFileInfo* info, const(char)* attribute, const(char)* attrValue) c_g_file_info_set_attribute_byte_string;
3553 	void function(GFileInfo* info, const(char)* attribute, int attrValue) c_g_file_info_set_attribute_int32;
3554 	void function(GFileInfo* info, const(char)* attribute, long attrValue) c_g_file_info_set_attribute_int64;
3555 	void function(GFileInfo* info, GFileAttributeMatcher* mask) c_g_file_info_set_attribute_mask;
3556 	void function(GFileInfo* info, const(char)* attribute, GObject* attrValue) c_g_file_info_set_attribute_object;
3557 	int function(GFileInfo* info, const(char)* attribute, GFileAttributeStatus status) c_g_file_info_set_attribute_status;
3558 	void function(GFileInfo* info, const(char)* attribute, const(char)* attrValue) c_g_file_info_set_attribute_string;
3559 	void function(GFileInfo* info, const(char)* attribute, char** attrValue) c_g_file_info_set_attribute_stringv;
3560 	void function(GFileInfo* info, const(char)* attribute, uint attrValue) c_g_file_info_set_attribute_uint32;
3561 	void function(GFileInfo* info, const(char)* attribute, ulong attrValue) c_g_file_info_set_attribute_uint64;
3562 	void function(GFileInfo* info, const(char)* contentType) c_g_file_info_set_content_type;
3563 	void function(GFileInfo* info, GDateTime* creationTime) c_g_file_info_set_creation_date_time;
3564 	void function(GFileInfo* info, const(char)* displayName) c_g_file_info_set_display_name;
3565 	void function(GFileInfo* info, const(char)* editName) c_g_file_info_set_edit_name;
3566 	void function(GFileInfo* info, GFileType type) c_g_file_info_set_file_type;
3567 	void function(GFileInfo* info, GIcon* icon) c_g_file_info_set_icon;
3568 	void function(GFileInfo* info, int isHidden) c_g_file_info_set_is_hidden;
3569 	void function(GFileInfo* info, int isSymlink) c_g_file_info_set_is_symlink;
3570 	void function(GFileInfo* info, GDateTime* mtime) c_g_file_info_set_modification_date_time;
3571 	void function(GFileInfo* info, GTimeVal* mtime) c_g_file_info_set_modification_time;
3572 	void function(GFileInfo* info, char* name) c_g_file_info_set_name;
3573 	void function(GFileInfo* info, long size) c_g_file_info_set_size;
3574 	void function(GFileInfo* info, int sortOrder) c_g_file_info_set_sort_order;
3575 	void function(GFileInfo* info, GIcon* icon) c_g_file_info_set_symbolic_icon;
3576 	void function(GFileInfo* info, const(char)* symlinkTarget) c_g_file_info_set_symlink_target;
3577 	void function(GFileInfo* info) c_g_file_info_unset_attribute_mask;
3578 
3579 	// gio.FileInputStream
3580 
3581 	GType function() c_g_file_input_stream_get_type;
3582 	GFileInfo* function(GFileInputStream* stream, const(char)* attributes, GCancellable* cancellable, GError** err) c_g_file_input_stream_query_info;
3583 	void function(GFileInputStream* stream, const(char)* attributes, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_input_stream_query_info_async;
3584 	GFileInfo* function(GFileInputStream* stream, GAsyncResult* result, GError** err) c_g_file_input_stream_query_info_finish;
3585 
3586 	// gio.FileMonitor
3587 
3588 	GType function() c_g_file_monitor_get_type;
3589 	int function(GFileMonitor* monitor) c_g_file_monitor_cancel;
3590 	void function(GFileMonitor* monitor, GFile* child, GFile* otherFile, GFileMonitorEvent eventType) c_g_file_monitor_emit_event;
3591 	int function(GFileMonitor* monitor) c_g_file_monitor_is_cancelled;
3592 	void function(GFileMonitor* monitor, int limitMsecs) c_g_file_monitor_set_rate_limit;
3593 
3594 	// gio.FileOutputStream
3595 
3596 	GType function() c_g_file_output_stream_get_type;
3597 	char* function(GFileOutputStream* stream) c_g_file_output_stream_get_etag;
3598 	GFileInfo* function(GFileOutputStream* stream, const(char)* attributes, GCancellable* cancellable, GError** err) c_g_file_output_stream_query_info;
3599 	void function(GFileOutputStream* stream, const(char)* attributes, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_output_stream_query_info_async;
3600 	GFileInfo* function(GFileOutputStream* stream, GAsyncResult* result, GError** err) c_g_file_output_stream_query_info_finish;
3601 
3602 	// gio.FilenameCompleter
3603 
3604 	GType function() c_g_filename_completer_get_type;
3605 	GFilenameCompleter* function() c_g_filename_completer_new;
3606 	char* function(GFilenameCompleter* completer, const(char)* initialText) c_g_filename_completer_get_completion_suffix;
3607 	char** function(GFilenameCompleter* completer, const(char)* initialText) c_g_filename_completer_get_completions;
3608 	void function(GFilenameCompleter* completer, int dirsOnly) c_g_filename_completer_set_dirs_only;
3609 
3610 	// gio.FilterInputStream
3611 
3612 	GType function() c_g_filter_input_stream_get_type;
3613 	GInputStream* function(GFilterInputStream* stream) c_g_filter_input_stream_get_base_stream;
3614 	int function(GFilterInputStream* stream) c_g_filter_input_stream_get_close_base_stream;
3615 	void function(GFilterInputStream* stream, int closeBase) c_g_filter_input_stream_set_close_base_stream;
3616 
3617 	// gio.FilterOutputStream
3618 
3619 	GType function() c_g_filter_output_stream_get_type;
3620 	GOutputStream* function(GFilterOutputStream* stream) c_g_filter_output_stream_get_base_stream;
3621 	int function(GFilterOutputStream* stream) c_g_filter_output_stream_get_close_base_stream;
3622 	void function(GFilterOutputStream* stream, int closeBase) c_g_filter_output_stream_set_close_base_stream;
3623 
3624 	// gio.IOExtension
3625 
3626 	const(char)* function(GIOExtension* extension) c_g_io_extension_get_name;
3627 	int function(GIOExtension* extension) c_g_io_extension_get_priority;
3628 	GType function(GIOExtension* extension) c_g_io_extension_get_type;
3629 	GTypeClass* function(GIOExtension* extension) c_g_io_extension_ref_class;
3630 
3631 	// gio.IOExtensionPoint
3632 
3633 	GIOExtension* function(GIOExtensionPoint* extensionPoint, const(char)* name) c_g_io_extension_point_get_extension_by_name;
3634 	GList* function(GIOExtensionPoint* extensionPoint) c_g_io_extension_point_get_extensions;
3635 	GType function(GIOExtensionPoint* extensionPoint) c_g_io_extension_point_get_required_type;
3636 	void function(GIOExtensionPoint* extensionPoint, GType type) c_g_io_extension_point_set_required_type;
3637 	GIOExtension* function(const(char)* extensionPointName, GType type, const(char)* extensionName, int priority) c_g_io_extension_point_implement;
3638 	GIOExtensionPoint* function(const(char)* name) c_g_io_extension_point_lookup;
3639 	GIOExtensionPoint* function(const(char)* name) c_g_io_extension_point_register;
3640 
3641 	// gio.IOModule
3642 
3643 	GType function() c_g_io_module_get_type;
3644 	GIOModule* function(char* filename) c_g_io_module_new;
3645 	GList* function(char* dirname) c_g_io_modules_load_all_in_directory;
3646 	GList* function(char* dirname, GIOModuleScope* scope_) c_g_io_modules_load_all_in_directory_with_scope;
3647 	void function(char* dirname) c_g_io_modules_scan_all_in_directory;
3648 	void function(char* dirname, GIOModuleScope* scope_) c_g_io_modules_scan_all_in_directory_with_scope;
3649 
3650 	// gio.IOModuleScope
3651 
3652 	void function(GIOModuleScope* scope_, const(char)* basename) c_g_io_module_scope_block;
3653 	void function(GIOModuleScope* scope_) c_g_io_module_scope_free;
3654 	GIOModuleScope* function(GIOModuleScopeFlags flags) c_g_io_module_scope_new;
3655 
3656 	// gio.IOSchedulerJob
3657 
3658 	int function(GIOSchedulerJob* job, GSourceFunc func, void* userData, GDestroyNotify notify) c_g_io_scheduler_job_send_to_mainloop;
3659 	void function(GIOSchedulerJob* job, GSourceFunc func, void* userData, GDestroyNotify notify) c_g_io_scheduler_job_send_to_mainloop_async;
3660 	void function() c_g_io_scheduler_cancel_all_jobs;
3661 	void function(GIOSchedulerJobFunc jobFunc, void* userData, GDestroyNotify notify, int ioPriority, GCancellable* cancellable) c_g_io_scheduler_push_job;
3662 
3663 	// gio.IOStream
3664 
3665 	GType function() c_g_io_stream_get_type;
3666 	int function(GAsyncResult* result, GError** err) c_g_io_stream_splice_finish;
3667 	void function(GIOStream* stream) c_g_io_stream_clear_pending;
3668 	int function(GIOStream* stream, GCancellable* cancellable, GError** err) c_g_io_stream_close;
3669 	void function(GIOStream* stream, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_io_stream_close_async;
3670 	int function(GIOStream* stream, GAsyncResult* result, GError** err) c_g_io_stream_close_finish;
3671 	GInputStream* function(GIOStream* stream) c_g_io_stream_get_input_stream;
3672 	GOutputStream* function(GIOStream* stream) c_g_io_stream_get_output_stream;
3673 	int function(GIOStream* stream) c_g_io_stream_has_pending;
3674 	int function(GIOStream* stream) c_g_io_stream_is_closed;
3675 	int function(GIOStream* stream, GError** err) c_g_io_stream_set_pending;
3676 	void function(GIOStream* stream1, GIOStream* stream2, GIOStreamSpliceFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_io_stream_splice_async;
3677 
3678 	// gio.Icon
3679 
3680 	GType function() c_g_icon_get_type;
3681 	GIcon* function(GVariant* value) c_g_icon_deserialize;
3682 	uint function(void* icon) c_g_icon_hash;
3683 	GIcon* function(const(char)* str, GError** err) c_g_icon_new_for_string;
3684 	int function(GIcon* icon1, GIcon* icon2) c_g_icon_equal;
3685 	GVariant* function(GIcon* icon) c_g_icon_serialize;
3686 	char* function(GIcon* icon) c_g_icon_to_string;
3687 
3688 	// gio.InetAddress
3689 
3690 	GType function() c_g_inet_address_get_type;
3691 	GInetAddress* function(GSocketFamily family) c_g_inet_address_new_any;
3692 	GInetAddress* function(ubyte* bytes, GSocketFamily family) c_g_inet_address_new_from_bytes;
3693 	GInetAddress* function(const(char)* string_) c_g_inet_address_new_from_string;
3694 	GInetAddress* function(GSocketFamily family) c_g_inet_address_new_loopback;
3695 	int function(GInetAddress* address, GInetAddress* otherAddress) c_g_inet_address_equal;
3696 	GSocketFamily function(GInetAddress* address) c_g_inet_address_get_family;
3697 	int function(GInetAddress* address) c_g_inet_address_get_is_any;
3698 	int function(GInetAddress* address) c_g_inet_address_get_is_link_local;
3699 	int function(GInetAddress* address) c_g_inet_address_get_is_loopback;
3700 	int function(GInetAddress* address) c_g_inet_address_get_is_mc_global;
3701 	int function(GInetAddress* address) c_g_inet_address_get_is_mc_link_local;
3702 	int function(GInetAddress* address) c_g_inet_address_get_is_mc_node_local;
3703 	int function(GInetAddress* address) c_g_inet_address_get_is_mc_org_local;
3704 	int function(GInetAddress* address) c_g_inet_address_get_is_mc_site_local;
3705 	int function(GInetAddress* address) c_g_inet_address_get_is_multicast;
3706 	int function(GInetAddress* address) c_g_inet_address_get_is_site_local;
3707 	size_t function(GInetAddress* address) c_g_inet_address_get_native_size;
3708 	ubyte* function(GInetAddress* address) c_g_inet_address_to_bytes;
3709 	char* function(GInetAddress* address) c_g_inet_address_to_string;
3710 
3711 	// gio.InetAddressMask
3712 
3713 	GType function() c_g_inet_address_mask_get_type;
3714 	GInetAddressMask* function(GInetAddress* addr, uint length, GError** err) c_g_inet_address_mask_new;
3715 	GInetAddressMask* function(const(char)* maskString, GError** err) c_g_inet_address_mask_new_from_string;
3716 	int function(GInetAddressMask* mask, GInetAddressMask* mask2) c_g_inet_address_mask_equal;
3717 	GInetAddress* function(GInetAddressMask* mask) c_g_inet_address_mask_get_address;
3718 	GSocketFamily function(GInetAddressMask* mask) c_g_inet_address_mask_get_family;
3719 	uint function(GInetAddressMask* mask) c_g_inet_address_mask_get_length;
3720 	int function(GInetAddressMask* mask, GInetAddress* address) c_g_inet_address_mask_matches;
3721 	char* function(GInetAddressMask* mask) c_g_inet_address_mask_to_string;
3722 
3723 	// gio.InetSocketAddress
3724 
3725 	GType function() c_g_inet_socket_address_get_type;
3726 	GSocketAddress* function(GInetAddress* address, ushort port) c_g_inet_socket_address_new;
3727 	GSocketAddress* function(const(char)* address, uint port) c_g_inet_socket_address_new_from_string;
3728 	GInetAddress* function(GInetSocketAddress* address) c_g_inet_socket_address_get_address;
3729 	uint function(GInetSocketAddress* address) c_g_inet_socket_address_get_flowinfo;
3730 	ushort function(GInetSocketAddress* address) c_g_inet_socket_address_get_port;
3731 	uint function(GInetSocketAddress* address) c_g_inet_socket_address_get_scope_id;
3732 
3733 	// gio.Initable
3734 
3735 	GType function() c_g_initable_get_type;
3736 	void* function(GType objectType, GCancellable* cancellable, GError** error, const(char)* firstPropertyName, ... ) c_g_initable_new;
3737 	GObject* function(GType objectType, const(char)* firstPropertyName, void* varArgs, GCancellable* cancellable, GError** err) c_g_initable_new_valist;
3738 	void* function(GType objectType, uint nParameters, GParameter* parameters, GCancellable* cancellable, GError** err) c_g_initable_newv;
3739 	int function(GInitable* initable, GCancellable* cancellable, GError** err) c_g_initable_init;
3740 
3741 	// gio.InputStream
3742 
3743 	GType function() c_g_input_stream_get_type;
3744 	void function(GInputStream* stream) c_g_input_stream_clear_pending;
3745 	int function(GInputStream* stream, GCancellable* cancellable, GError** err) c_g_input_stream_close;
3746 	void function(GInputStream* stream, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_input_stream_close_async;
3747 	int function(GInputStream* stream, GAsyncResult* result, GError** err) c_g_input_stream_close_finish;
3748 	int function(GInputStream* stream) c_g_input_stream_has_pending;
3749 	int function(GInputStream* stream) c_g_input_stream_is_closed;
3750 	ptrdiff_t function(GInputStream* stream, void* buffer, size_t count, GCancellable* cancellable, GError** err) c_g_input_stream_read;
3751 	int function(GInputStream* stream, void* buffer, size_t count, size_t* bytesRead, GCancellable* cancellable, GError** err) c_g_input_stream_read_all;
3752 	void function(GInputStream* stream, void* buffer, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_input_stream_read_all_async;
3753 	int function(GInputStream* stream, GAsyncResult* result, size_t* bytesRead, GError** err) c_g_input_stream_read_all_finish;
3754 	void function(GInputStream* stream, void* buffer, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_input_stream_read_async;
3755 	GBytes* function(GInputStream* stream, size_t count, GCancellable* cancellable, GError** err) c_g_input_stream_read_bytes;
3756 	void function(GInputStream* stream, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_input_stream_read_bytes_async;
3757 	GBytes* function(GInputStream* stream, GAsyncResult* result, GError** err) c_g_input_stream_read_bytes_finish;
3758 	ptrdiff_t function(GInputStream* stream, GAsyncResult* result, GError** err) c_g_input_stream_read_finish;
3759 	int function(GInputStream* stream, GError** err) c_g_input_stream_set_pending;
3760 	ptrdiff_t function(GInputStream* stream, size_t count, GCancellable* cancellable, GError** err) c_g_input_stream_skip;
3761 	void function(GInputStream* stream, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_input_stream_skip_async;
3762 	ptrdiff_t function(GInputStream* stream, GAsyncResult* result, GError** err) c_g_input_stream_skip_finish;
3763 
3764 	// gio.ListModel
3765 
3766 	GType function() c_g_list_model_get_type;
3767 	void* function(GListModel* list, uint position) c_g_list_model_get_item;
3768 	GType function(GListModel* list) c_g_list_model_get_item_type;
3769 	uint function(GListModel* list) c_g_list_model_get_n_items;
3770 	GObject* function(GListModel* list, uint position) c_g_list_model_get_object;
3771 	void function(GListModel* list, uint position, uint removed, uint added) c_g_list_model_items_changed;
3772 
3773 	// gio.ListStore
3774 
3775 	GType function() c_g_list_store_get_type;
3776 	GListStore* function(GType itemType) c_g_list_store_new;
3777 	void function(GListStore* store, void* item) c_g_list_store_append;
3778 	int function(GListStore* store, void* item, uint* position) c_g_list_store_find;
3779 	int function(GListStore* store, void* item, GEqualFunc equalFunc, uint* position) c_g_list_store_find_with_equal_func;
3780 	void function(GListStore* store, uint position, void* item) c_g_list_store_insert;
3781 	uint function(GListStore* store, void* item, GCompareDataFunc compareFunc, void* userData) c_g_list_store_insert_sorted;
3782 	void function(GListStore* store, uint position) c_g_list_store_remove;
3783 	void function(GListStore* store) c_g_list_store_remove_all;
3784 	void function(GListStore* store, GCompareDataFunc compareFunc, void* userData) c_g_list_store_sort;
3785 	void function(GListStore* store, uint position, uint nRemovals, void** additions, uint nAdditions) c_g_list_store_splice;
3786 
3787 	// gio.LoadableIcon
3788 
3789 	GType function() c_g_loadable_icon_get_type;
3790 	GInputStream* function(GLoadableIcon* icon, int size, char** type, GCancellable* cancellable, GError** err) c_g_loadable_icon_load;
3791 	void function(GLoadableIcon* icon, int size, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_loadable_icon_load_async;
3792 	GInputStream* function(GLoadableIcon* icon, GAsyncResult* res, char** type, GError** err) c_g_loadable_icon_load_finish;
3793 
3794 	// gio.MemoryInputStream
3795 
3796 	GType function() c_g_memory_input_stream_get_type;
3797 	GInputStream* function() c_g_memory_input_stream_new;
3798 	GInputStream* function(GBytes* bytes) c_g_memory_input_stream_new_from_bytes;
3799 	GInputStream* function(void* data, ptrdiff_t len, GDestroyNotify destroy) c_g_memory_input_stream_new_from_data;
3800 	void function(GMemoryInputStream* stream, GBytes* bytes) c_g_memory_input_stream_add_bytes;
3801 	void function(GMemoryInputStream* stream, void* data, ptrdiff_t len, GDestroyNotify destroy) c_g_memory_input_stream_add_data;
3802 
3803 	// gio.MemoryMonitor
3804 
3805 	GType function() c_g_memory_monitor_get_type;
3806 	GMemoryMonitor* function() c_g_memory_monitor_dup_default;
3807 
3808 	// gio.MemoryOutputStream
3809 
3810 	GType function() c_g_memory_output_stream_get_type;
3811 	GOutputStream* function(void* data, size_t size, GReallocFunc reallocFunction, GDestroyNotify destroyFunction) c_g_memory_output_stream_new;
3812 	GOutputStream* function() c_g_memory_output_stream_new_resizable;
3813 	void* function(GMemoryOutputStream* ostream) c_g_memory_output_stream_get_data;
3814 	size_t function(GMemoryOutputStream* ostream) c_g_memory_output_stream_get_data_size;
3815 	size_t function(GMemoryOutputStream* ostream) c_g_memory_output_stream_get_size;
3816 	GBytes* function(GMemoryOutputStream* ostream) c_g_memory_output_stream_steal_as_bytes;
3817 	void* function(GMemoryOutputStream* ostream) c_g_memory_output_stream_steal_data;
3818 
3819 	// gio.Menu
3820 
3821 	GType function() c_g_menu_get_type;
3822 	GMenu* function() c_g_menu_new;
3823 	void function(GMenu* menu, const(char)* label, const(char)* detailedAction) c_g_menu_append;
3824 	void function(GMenu* menu, GMenuItem* item) c_g_menu_append_item;
3825 	void function(GMenu* menu, const(char)* label, GMenuModel* section) c_g_menu_append_section;
3826 	void function(GMenu* menu, const(char)* label, GMenuModel* submenu) c_g_menu_append_submenu;
3827 	void function(GMenu* menu) c_g_menu_freeze;
3828 	void function(GMenu* menu, int position, const(char)* label, const(char)* detailedAction) c_g_menu_insert;
3829 	void function(GMenu* menu, int position, GMenuItem* item) c_g_menu_insert_item;
3830 	void function(GMenu* menu, int position, const(char)* label, GMenuModel* section) c_g_menu_insert_section;
3831 	void function(GMenu* menu, int position, const(char)* label, GMenuModel* submenu) c_g_menu_insert_submenu;
3832 	void function(GMenu* menu, const(char)* label, const(char)* detailedAction) c_g_menu_prepend;
3833 	void function(GMenu* menu, GMenuItem* item) c_g_menu_prepend_item;
3834 	void function(GMenu* menu, const(char)* label, GMenuModel* section) c_g_menu_prepend_section;
3835 	void function(GMenu* menu, const(char)* label, GMenuModel* submenu) c_g_menu_prepend_submenu;
3836 	void function(GMenu* menu, int position) c_g_menu_remove;
3837 	void function(GMenu* menu) c_g_menu_remove_all;
3838 
3839 	// gio.MenuAttributeIter
3840 
3841 	GType function() c_g_menu_attribute_iter_get_type;
3842 	const(char)* function(GMenuAttributeIter* iter) c_g_menu_attribute_iter_get_name;
3843 	int function(GMenuAttributeIter* iter, char** outName, GVariant** value) c_g_menu_attribute_iter_get_next;
3844 	GVariant* function(GMenuAttributeIter* iter) c_g_menu_attribute_iter_get_value;
3845 	int function(GMenuAttributeIter* iter) c_g_menu_attribute_iter_next;
3846 
3847 	// gio.MenuItem
3848 
3849 	GType function() c_g_menu_item_get_type;
3850 	GMenuItem* function(const(char)* label, const(char)* detailedAction) c_g_menu_item_new;
3851 	GMenuItem* function(GMenuModel* model, int itemIndex) c_g_menu_item_new_from_model;
3852 	GMenuItem* function(const(char)* label, GMenuModel* section) c_g_menu_item_new_section;
3853 	GMenuItem* function(const(char)* label, GMenuModel* submenu) c_g_menu_item_new_submenu;
3854 	int function(GMenuItem* menuItem, const(char)* attribute, const(char)* formatString, ... ) c_g_menu_item_get_attribute;
3855 	GVariant* function(GMenuItem* menuItem, const(char)* attribute, GVariantType* expectedType) c_g_menu_item_get_attribute_value;
3856 	GMenuModel* function(GMenuItem* menuItem, const(char)* link) c_g_menu_item_get_link;
3857 	void function(GMenuItem* menuItem, const(char)* action, const(char)* formatString, ... ) c_g_menu_item_set_action_and_target;
3858 	void function(GMenuItem* menuItem, const(char)* action, GVariant* targetValue) c_g_menu_item_set_action_and_target_value;
3859 	void function(GMenuItem* menuItem, const(char)* attribute, const(char)* formatString, ... ) c_g_menu_item_set_attribute;
3860 	void function(GMenuItem* menuItem, const(char)* attribute, GVariant* value) c_g_menu_item_set_attribute_value;
3861 	void function(GMenuItem* menuItem, const(char)* detailedAction) c_g_menu_item_set_detailed_action;
3862 	void function(GMenuItem* menuItem, GIcon* icon) c_g_menu_item_set_icon;
3863 	void function(GMenuItem* menuItem, const(char)* label) c_g_menu_item_set_label;
3864 	void function(GMenuItem* menuItem, const(char)* link, GMenuModel* model) c_g_menu_item_set_link;
3865 	void function(GMenuItem* menuItem, GMenuModel* section) c_g_menu_item_set_section;
3866 	void function(GMenuItem* menuItem, GMenuModel* submenu) c_g_menu_item_set_submenu;
3867 
3868 	// gio.MenuLinkIter
3869 
3870 	GType function() c_g_menu_link_iter_get_type;
3871 	const(char)* function(GMenuLinkIter* iter) c_g_menu_link_iter_get_name;
3872 	int function(GMenuLinkIter* iter, char** outLink, GMenuModel** value) c_g_menu_link_iter_get_next;
3873 	GMenuModel* function(GMenuLinkIter* iter) c_g_menu_link_iter_get_value;
3874 	int function(GMenuLinkIter* iter) c_g_menu_link_iter_next;
3875 
3876 	// gio.MenuModel
3877 
3878 	GType function() c_g_menu_model_get_type;
3879 	int function(GMenuModel* model, int itemIndex, const(char)* attribute, const(char)* formatString, ... ) c_g_menu_model_get_item_attribute;
3880 	GVariant* function(GMenuModel* model, int itemIndex, const(char)* attribute, GVariantType* expectedType) c_g_menu_model_get_item_attribute_value;
3881 	GMenuModel* function(GMenuModel* model, int itemIndex, const(char)* link) c_g_menu_model_get_item_link;
3882 	int function(GMenuModel* model) c_g_menu_model_get_n_items;
3883 	int function(GMenuModel* model) c_g_menu_model_is_mutable;
3884 	void function(GMenuModel* model, int position, int removed, int added) c_g_menu_model_items_changed;
3885 	GMenuAttributeIter* function(GMenuModel* model, int itemIndex) c_g_menu_model_iterate_item_attributes;
3886 	GMenuLinkIter* function(GMenuModel* model, int itemIndex) c_g_menu_model_iterate_item_links;
3887 
3888 	// gio.Mount
3889 
3890 	GType function() c_g_mount_get_type;
3891 	int function(GMount* mount) c_g_mount_can_eject;
3892 	int function(GMount* mount) c_g_mount_can_unmount;
3893 	void function(GMount* mount, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_eject;
3894 	int function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_eject_finish;
3895 	void function(GMount* mount, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_eject_with_operation;
3896 	int function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_eject_with_operation_finish;
3897 	GFile* function(GMount* mount) c_g_mount_get_default_location;
3898 	GDrive* function(GMount* mount) c_g_mount_get_drive;
3899 	GIcon* function(GMount* mount) c_g_mount_get_icon;
3900 	char* function(GMount* mount) c_g_mount_get_name;
3901 	GFile* function(GMount* mount) c_g_mount_get_root;
3902 	const(char)* function(GMount* mount) c_g_mount_get_sort_key;
3903 	GIcon* function(GMount* mount) c_g_mount_get_symbolic_icon;
3904 	char* function(GMount* mount) c_g_mount_get_uuid;
3905 	GVolume* function(GMount* mount) c_g_mount_get_volume;
3906 	void function(GMount* mount, int forceRescan, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_guess_content_type;
3907 	char** function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_guess_content_type_finish;
3908 	char** function(GMount* mount, int forceRescan, GCancellable* cancellable, GError** err) c_g_mount_guess_content_type_sync;
3909 	int function(GMount* mount) c_g_mount_is_shadowed;
3910 	void function(GMount* mount, GMountMountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_remount;
3911 	int function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_remount_finish;
3912 	void function(GMount* mount) c_g_mount_shadow;
3913 	void function(GMount* mount, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_unmount;
3914 	int function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_unmount_finish;
3915 	void function(GMount* mount, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_unmount_with_operation;
3916 	int function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_unmount_with_operation_finish;
3917 	void function(GMount* mount) c_g_mount_unshadow;
3918 
3919 	// gio.MountOperation
3920 
3921 	GType function() c_g_mount_operation_get_type;
3922 	GMountOperation* function() c_g_mount_operation_new;
3923 	int function(GMountOperation* op) c_g_mount_operation_get_anonymous;
3924 	int function(GMountOperation* op) c_g_mount_operation_get_choice;
3925 	const(char)* function(GMountOperation* op) c_g_mount_operation_get_domain;
3926 	int function(GMountOperation* op) c_g_mount_operation_get_is_tcrypt_hidden_volume;
3927 	int function(GMountOperation* op) c_g_mount_operation_get_is_tcrypt_system_volume;
3928 	const(char)* function(GMountOperation* op) c_g_mount_operation_get_password;
3929 	GPasswordSave function(GMountOperation* op) c_g_mount_operation_get_password_save;
3930 	uint function(GMountOperation* op) c_g_mount_operation_get_pim;
3931 	const(char)* function(GMountOperation* op) c_g_mount_operation_get_username;
3932 	void function(GMountOperation* op, GMountOperationResult result) c_g_mount_operation_reply;
3933 	void function(GMountOperation* op, int anonymous) c_g_mount_operation_set_anonymous;
3934 	void function(GMountOperation* op, int choice) c_g_mount_operation_set_choice;
3935 	void function(GMountOperation* op, const(char)* domain) c_g_mount_operation_set_domain;
3936 	void function(GMountOperation* op, int hiddenVolume) c_g_mount_operation_set_is_tcrypt_hidden_volume;
3937 	void function(GMountOperation* op, int systemVolume) c_g_mount_operation_set_is_tcrypt_system_volume;
3938 	void function(GMountOperation* op, const(char)* password) c_g_mount_operation_set_password;
3939 	void function(GMountOperation* op, GPasswordSave save) c_g_mount_operation_set_password_save;
3940 	void function(GMountOperation* op, uint pim) c_g_mount_operation_set_pim;
3941 	void function(GMountOperation* op, const(char)* username) c_g_mount_operation_set_username;
3942 
3943 	// gio.NativeSocketAddress
3944 
3945 	GType function() c_g_native_socket_address_get_type;
3946 	GSocketAddress* function(void* native, size_t len) c_g_native_socket_address_new;
3947 
3948 	// gio.NativeVolumeMonitor
3949 
3950 	GType function() c_g_native_volume_monitor_get_type;
3951 
3952 	// gio.NetworkAddress
3953 
3954 	GType function() c_g_network_address_get_type;
3955 	GSocketConnectable* function(const(char)* hostname, ushort port) c_g_network_address_new;
3956 	GSocketConnectable* function(ushort port) c_g_network_address_new_loopback;
3957 	GSocketConnectable* function(const(char)* hostAndPort, ushort defaultPort, GError** err) c_g_network_address_parse;
3958 	GSocketConnectable* function(const(char)* uri, ushort defaultPort, GError** err) c_g_network_address_parse_uri;
3959 	const(char)* function(GNetworkAddress* addr) c_g_network_address_get_hostname;
3960 	ushort function(GNetworkAddress* addr) c_g_network_address_get_port;
3961 	const(char)* function(GNetworkAddress* addr) c_g_network_address_get_scheme;
3962 
3963 	// gio.NetworkMonitor
3964 
3965 	GType function() c_g_network_monitor_get_type;
3966 	GNetworkMonitor* function() c_g_network_monitor_get_default;
3967 	int function(GNetworkMonitor* monitor, GSocketConnectable* connectable, GCancellable* cancellable, GError** err) c_g_network_monitor_can_reach;
3968 	void function(GNetworkMonitor* monitor, GSocketConnectable* connectable, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_network_monitor_can_reach_async;
3969 	int function(GNetworkMonitor* monitor, GAsyncResult* result, GError** err) c_g_network_monitor_can_reach_finish;
3970 	GNetworkConnectivity function(GNetworkMonitor* monitor) c_g_network_monitor_get_connectivity;
3971 	int function(GNetworkMonitor* monitor) c_g_network_monitor_get_network_available;
3972 	int function(GNetworkMonitor* monitor) c_g_network_monitor_get_network_metered;
3973 
3974 	// gio.NetworkService
3975 
3976 	GType function() c_g_network_service_get_type;
3977 	GSocketConnectable* function(const(char)* service, const(char)* protocol, const(char)* domain) c_g_network_service_new;
3978 	const(char)* function(GNetworkService* srv) c_g_network_service_get_domain;
3979 	const(char)* function(GNetworkService* srv) c_g_network_service_get_protocol;
3980 	const(char)* function(GNetworkService* srv) c_g_network_service_get_scheme;
3981 	const(char)* function(GNetworkService* srv) c_g_network_service_get_service;
3982 	void function(GNetworkService* srv, const(char)* scheme) c_g_network_service_set_scheme;
3983 
3984 	// gio.Notification
3985 
3986 	GType function() c_g_notification_get_type;
3987 	GNotification* function(const(char)* title) c_g_notification_new;
3988 	void function(GNotification* notification, const(char)* label, const(char)* detailedAction) c_g_notification_add_button;
3989 	void function(GNotification* notification, const(char)* label, const(char)* action, const(char)* targetFormat, ... ) c_g_notification_add_button_with_target;
3990 	void function(GNotification* notification, const(char)* label, const(char)* action, GVariant* target) c_g_notification_add_button_with_target_value;
3991 	void function(GNotification* notification, const(char)* body_) c_g_notification_set_body;
3992 	void function(GNotification* notification, const(char)* category) c_g_notification_set_category;
3993 	void function(GNotification* notification, const(char)* detailedAction) c_g_notification_set_default_action;
3994 	void function(GNotification* notification, const(char)* action, const(char)* targetFormat, ... ) c_g_notification_set_default_action_and_target;
3995 	void function(GNotification* notification, const(char)* action, GVariant* target) c_g_notification_set_default_action_and_target_value;
3996 	void function(GNotification* notification, GIcon* icon) c_g_notification_set_icon;
3997 	void function(GNotification* notification, GNotificationPriority priority) c_g_notification_set_priority;
3998 	void function(GNotification* notification, const(char)* title) c_g_notification_set_title;
3999 	void function(GNotification* notification, int urgent) c_g_notification_set_urgent;
4000 
4001 	// gio.OutputStream
4002 
4003 	GType function() c_g_output_stream_get_type;
4004 	void function(GOutputStream* stream) c_g_output_stream_clear_pending;
4005 	int function(GOutputStream* stream, GCancellable* cancellable, GError** err) c_g_output_stream_close;
4006 	void function(GOutputStream* stream, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_close_async;
4007 	int function(GOutputStream* stream, GAsyncResult* result, GError** err) c_g_output_stream_close_finish;
4008 	int function(GOutputStream* stream, GCancellable* cancellable, GError** err) c_g_output_stream_flush;
4009 	void function(GOutputStream* stream, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_flush_async;
4010 	int function(GOutputStream* stream, GAsyncResult* result, GError** err) c_g_output_stream_flush_finish;
4011 	int function(GOutputStream* stream) c_g_output_stream_has_pending;
4012 	int function(GOutputStream* stream) c_g_output_stream_is_closed;
4013 	int function(GOutputStream* stream) c_g_output_stream_is_closing;
4014 	int function(GOutputStream* stream, size_t* bytesWritten, GCancellable* cancellable, GError** error, const(char)* format, ... ) c_g_output_stream_printf;
4015 	int function(GOutputStream* stream, GError** err) c_g_output_stream_set_pending;
4016 	ptrdiff_t function(GOutputStream* stream, GInputStream* source, GOutputStreamSpliceFlags flags, GCancellable* cancellable, GError** err) c_g_output_stream_splice;
4017 	void function(GOutputStream* stream, GInputStream* source, GOutputStreamSpliceFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_splice_async;
4018 	ptrdiff_t function(GOutputStream* stream, GAsyncResult* result, GError** err) c_g_output_stream_splice_finish;
4019 	int function(GOutputStream* stream, size_t* bytesWritten, GCancellable* cancellable, GError** error, const(char)* format, void* args) c_g_output_stream_vprintf;
4020 	ptrdiff_t function(GOutputStream* stream, void* buffer, size_t count, GCancellable* cancellable, GError** err) c_g_output_stream_write;
4021 	int function(GOutputStream* stream, void* buffer, size_t count, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_output_stream_write_all;
4022 	void function(GOutputStream* stream, void* buffer, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_write_all_async;
4023 	int function(GOutputStream* stream, GAsyncResult* result, size_t* bytesWritten, GError** err) c_g_output_stream_write_all_finish;
4024 	void function(GOutputStream* stream, void* buffer, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_write_async;
4025 	ptrdiff_t function(GOutputStream* stream, GBytes* bytes, GCancellable* cancellable, GError** err) c_g_output_stream_write_bytes;
4026 	void function(GOutputStream* stream, GBytes* bytes, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_write_bytes_async;
4027 	ptrdiff_t function(GOutputStream* stream, GAsyncResult* result, GError** err) c_g_output_stream_write_bytes_finish;
4028 	ptrdiff_t function(GOutputStream* stream, GAsyncResult* result, GError** err) c_g_output_stream_write_finish;
4029 	int function(GOutputStream* stream, GOutputVector* vectors, size_t nVectors, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_output_stream_writev;
4030 	int function(GOutputStream* stream, GOutputVector* vectors, size_t nVectors, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_output_stream_writev_all;
4031 	void function(GOutputStream* stream, GOutputVector* vectors, size_t nVectors, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_writev_all_async;
4032 	int function(GOutputStream* stream, GAsyncResult* result, size_t* bytesWritten, GError** err) c_g_output_stream_writev_all_finish;
4033 	void function(GOutputStream* stream, GOutputVector* vectors, size_t nVectors, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_writev_async;
4034 	int function(GOutputStream* stream, GAsyncResult* result, size_t* bytesWritten, GError** err) c_g_output_stream_writev_finish;
4035 
4036 	// gio.Permission
4037 
4038 	GType function() c_g_permission_get_type;
4039 	int function(GPermission* permission, GCancellable* cancellable, GError** err) c_g_permission_acquire;
4040 	void function(GPermission* permission, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_permission_acquire_async;
4041 	int function(GPermission* permission, GAsyncResult* result, GError** err) c_g_permission_acquire_finish;
4042 	int function(GPermission* permission) c_g_permission_get_allowed;
4043 	int function(GPermission* permission) c_g_permission_get_can_acquire;
4044 	int function(GPermission* permission) c_g_permission_get_can_release;
4045 	void function(GPermission* permission, int allowed, int canAcquire, int canRelease) c_g_permission_impl_update;
4046 	int function(GPermission* permission, GCancellable* cancellable, GError** err) c_g_permission_release;
4047 	void function(GPermission* permission, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_permission_release_async;
4048 	int function(GPermission* permission, GAsyncResult* result, GError** err) c_g_permission_release_finish;
4049 
4050 	// gio.PollableInputStream
4051 
4052 	GType function() c_g_pollable_input_stream_get_type;
4053 	int function(GPollableInputStream* stream) c_g_pollable_input_stream_can_poll;
4054 	GSource* function(GPollableInputStream* stream, GCancellable* cancellable) c_g_pollable_input_stream_create_source;
4055 	int function(GPollableInputStream* stream) c_g_pollable_input_stream_is_readable;
4056 	ptrdiff_t function(GPollableInputStream* stream, void* buffer, size_t count, GCancellable* cancellable, GError** err) c_g_pollable_input_stream_read_nonblocking;
4057 
4058 	// gio.PollableOutputStream
4059 
4060 	GType function() c_g_pollable_output_stream_get_type;
4061 	int function(GPollableOutputStream* stream) c_g_pollable_output_stream_can_poll;
4062 	GSource* function(GPollableOutputStream* stream, GCancellable* cancellable) c_g_pollable_output_stream_create_source;
4063 	int function(GPollableOutputStream* stream) c_g_pollable_output_stream_is_writable;
4064 	ptrdiff_t function(GPollableOutputStream* stream, void* buffer, size_t count, GCancellable* cancellable, GError** err) c_g_pollable_output_stream_write_nonblocking;
4065 	GPollableReturn function(GPollableOutputStream* stream, GOutputVector* vectors, size_t nVectors, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_pollable_output_stream_writev_nonblocking;
4066 
4067 	// gio.PowerProfileMonitor
4068 
4069 	GType function() c_g_power_profile_monitor_get_type;
4070 	GPowerProfileMonitor* function() c_g_power_profile_monitor_dup_default;
4071 	int function(GPowerProfileMonitor* monitor) c_g_power_profile_monitor_get_power_saver_enabled;
4072 
4073 	// gio.PropertyAction
4074 
4075 	GType function() c_g_property_action_get_type;
4076 	GPropertyAction* function(const(char)* name, void* object, const(char)* propertyName) c_g_property_action_new;
4077 
4078 	// gio.Proxy
4079 
4080 	GType function() c_g_proxy_get_type;
4081 	GProxy* function(const(char)* protocol) c_g_proxy_get_default_for_protocol;
4082 	GIOStream* function(GProxy* proxy, GIOStream* connection, GProxyAddress* proxyAddress, GCancellable* cancellable, GError** err) c_g_proxy_connect;
4083 	void function(GProxy* proxy, GIOStream* connection, GProxyAddress* proxyAddress, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_proxy_connect_async;
4084 	GIOStream* function(GProxy* proxy, GAsyncResult* result, GError** err) c_g_proxy_connect_finish;
4085 	int function(GProxy* proxy) c_g_proxy_supports_hostname;
4086 
4087 	// gio.ProxyAddress
4088 
4089 	GType function() c_g_proxy_address_get_type;
4090 	GSocketAddress* function(GInetAddress* inetaddr, ushort port, const(char)* protocol, const(char)* destHostname, ushort destPort, const(char)* username, const(char)* password) c_g_proxy_address_new;
4091 	const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_destination_hostname;
4092 	ushort function(GProxyAddress* proxy) c_g_proxy_address_get_destination_port;
4093 	const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_destination_protocol;
4094 	const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_password;
4095 	const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_protocol;
4096 	const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_uri;
4097 	const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_username;
4098 
4099 	// gio.ProxyAddressEnumerator
4100 
4101 	GType function() c_g_proxy_address_enumerator_get_type;
4102 
4103 	// gio.ProxyResolver
4104 
4105 	GType function() c_g_proxy_resolver_get_type;
4106 	GProxyResolver* function() c_g_proxy_resolver_get_default;
4107 	int function(GProxyResolver* resolver) c_g_proxy_resolver_is_supported;
4108 	char** function(GProxyResolver* resolver, const(char)* uri, GCancellable* cancellable, GError** err) c_g_proxy_resolver_lookup;
4109 	void function(GProxyResolver* resolver, const(char)* uri, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_proxy_resolver_lookup_async;
4110 	char** function(GProxyResolver* resolver, GAsyncResult* result, GError** err) c_g_proxy_resolver_lookup_finish;
4111 
4112 	// gio.RemoteActionGroup
4113 
4114 	GType function() c_g_remote_action_group_get_type;
4115 	void function(GRemoteActionGroup* remote, const(char)* actionName, GVariant* parameter, GVariant* platformData) c_g_remote_action_group_activate_action_full;
4116 	void function(GRemoteActionGroup* remote, const(char)* actionName, GVariant* value, GVariant* platformData) c_g_remote_action_group_change_action_state_full;
4117 
4118 	// gio.Resolver
4119 
4120 	GType function() c_g_resolver_get_type;
4121 	void function(GList* addresses) c_g_resolver_free_addresses;
4122 	void function(GList* targets) c_g_resolver_free_targets;
4123 	GResolver* function() c_g_resolver_get_default;
4124 	char* function(GResolver* resolver, GInetAddress* address, GCancellable* cancellable, GError** err) c_g_resolver_lookup_by_address;
4125 	void function(GResolver* resolver, GInetAddress* address, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_resolver_lookup_by_address_async;
4126 	char* function(GResolver* resolver, GAsyncResult* result, GError** err) c_g_resolver_lookup_by_address_finish;
4127 	GList* function(GResolver* resolver, const(char)* hostname, GCancellable* cancellable, GError** err) c_g_resolver_lookup_by_name;
4128 	void function(GResolver* resolver, const(char)* hostname, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_resolver_lookup_by_name_async;
4129 	GList* function(GResolver* resolver, GAsyncResult* result, GError** err) c_g_resolver_lookup_by_name_finish;
4130 	GList* function(GResolver* resolver, const(char)* hostname, GResolverNameLookupFlags flags, GCancellable* cancellable, GError** err) c_g_resolver_lookup_by_name_with_flags;
4131 	void function(GResolver* resolver, const(char)* hostname, GResolverNameLookupFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_resolver_lookup_by_name_with_flags_async;
4132 	GList* function(GResolver* resolver, GAsyncResult* result, GError** err) c_g_resolver_lookup_by_name_with_flags_finish;
4133 	GList* function(GResolver* resolver, const(char)* rrname, GResolverRecordType recordType, GCancellable* cancellable, GError** err) c_g_resolver_lookup_records;
4134 	void function(GResolver* resolver, const(char)* rrname, GResolverRecordType recordType, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_resolver_lookup_records_async;
4135 	GList* function(GResolver* resolver, GAsyncResult* result, GError** err) c_g_resolver_lookup_records_finish;
4136 	GList* function(GResolver* resolver, const(char)* service, const(char)* protocol, const(char)* domain, GCancellable* cancellable, GError** err) c_g_resolver_lookup_service;
4137 	void function(GResolver* resolver, const(char)* service, const(char)* protocol, const(char)* domain, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_resolver_lookup_service_async;
4138 	GList* function(GResolver* resolver, GAsyncResult* result, GError** err) c_g_resolver_lookup_service_finish;
4139 	void function(GResolver* resolver) c_g_resolver_set_default;
4140 
4141 	// gio.Resource
4142 
4143 	GType function() c_g_resource_get_type;
4144 	GResource* function(GBytes* data, GError** err) c_g_resource_new_from_data;
4145 	void function(GResource* resource) c_g_resources_register;
4146 	void function(GResource* resource) c_g_resources_unregister;
4147 	char** function(GResource* resource, const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resource_enumerate_children;
4148 	int function(GResource* resource, const(char)* path, GResourceLookupFlags lookupFlags, size_t* size, uint* flags, GError** err) c_g_resource_get_info;
4149 	GBytes* function(GResource* resource, const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resource_lookup_data;
4150 	GInputStream* function(GResource* resource, const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resource_open_stream;
4151 	GResource* function(GResource* resource) c_g_resource_ref;
4152 	void function(GResource* resource) c_g_resource_unref;
4153 	GResource* function(char* filename, GError** err) c_g_resource_load;
4154 	char** function(const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resources_enumerate_children;
4155 	int function(const(char)* path, GResourceLookupFlags lookupFlags, size_t* size, uint* flags, GError** err) c_g_resources_get_info;
4156 	GBytes* function(const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resources_lookup_data;
4157 	GInputStream* function(const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resources_open_stream;
4158 
4159 	// gio.Seekable
4160 
4161 	GType function() c_g_seekable_get_type;
4162 	int function(GSeekable* seekable) c_g_seekable_can_seek;
4163 	int function(GSeekable* seekable) c_g_seekable_can_truncate;
4164 	int function(GSeekable* seekable, long offset, GSeekType type, GCancellable* cancellable, GError** err) c_g_seekable_seek;
4165 	long function(GSeekable* seekable) c_g_seekable_tell;
4166 	int function(GSeekable* seekable, long offset, GCancellable* cancellable, GError** err) c_g_seekable_truncate;
4167 
4168 	// gio.Settings
4169 
4170 	GType function() c_g_settings_get_type;
4171 	GSettings* function(const(char)* schemaId) c_g_settings_new;
4172 	GSettings* function(GSettingsSchema* schema, GSettingsBackend* backend, const(char)* path) c_g_settings_new_full;
4173 	GSettings* function(const(char)* schemaId, GSettingsBackend* backend) c_g_settings_new_with_backend;
4174 	GSettings* function(const(char)* schemaId, GSettingsBackend* backend, const(char)* path) c_g_settings_new_with_backend_and_path;
4175 	GSettings* function(const(char)* schemaId, const(char)* path) c_g_settings_new_with_path;
4176 	char** function() c_g_settings_list_relocatable_schemas;
4177 	char** function() c_g_settings_list_schemas;
4178 	void function() c_g_settings_sync;
4179 	void function(void* object, const(char)* property) c_g_settings_unbind;
4180 	void function(GSettings* settings) c_g_settings_apply;
4181 	void function(GSettings* settings, const(char)* key, void* object, const(char)* property, GSettingsBindFlags flags) c_g_settings_bind;
4182 	void function(GSettings* settings, const(char)* key, void* object, const(char)* property, GSettingsBindFlags flags, GSettingsBindGetMapping getMapping, GSettingsBindSetMapping setMapping, void* userData, GDestroyNotify destroy) c_g_settings_bind_with_mapping;
4183 	void function(GSettings* settings, const(char)* key, void* object, const(char)* property, int inverted) c_g_settings_bind_writable;
4184 	GAction* function(GSettings* settings, const(char)* key) c_g_settings_create_action;
4185 	void function(GSettings* settings) c_g_settings_delay;
4186 	void function(GSettings* settings, const(char)* key, const(char)* format, ... ) c_g_settings_get;
4187 	int function(GSettings* settings, const(char)* key) c_g_settings_get_boolean;
4188 	GSettings* function(GSettings* settings, const(char)* name) c_g_settings_get_child;
4189 	GVariant* function(GSettings* settings, const(char)* key) c_g_settings_get_default_value;
4190 	double function(GSettings* settings, const(char)* key) c_g_settings_get_double;
4191 	int function(GSettings* settings, const(char)* key) c_g_settings_get_enum;
4192 	uint function(GSettings* settings, const(char)* key) c_g_settings_get_flags;
4193 	int function(GSettings* settings) c_g_settings_get_has_unapplied;
4194 	int function(GSettings* settings, const(char)* key) c_g_settings_get_int;
4195 	long function(GSettings* settings, const(char)* key) c_g_settings_get_int64;
4196 	void* function(GSettings* settings, const(char)* key, GSettingsGetMapping mapping, void* userData) c_g_settings_get_mapped;
4197 	GVariant* function(GSettings* settings, const(char)* key) c_g_settings_get_range;
4198 	char* function(GSettings* settings, const(char)* key) c_g_settings_get_string;
4199 	char** function(GSettings* settings, const(char)* key) c_g_settings_get_strv;
4200 	uint function(GSettings* settings, const(char)* key) c_g_settings_get_uint;
4201 	ulong function(GSettings* settings, const(char)* key) c_g_settings_get_uint64;
4202 	GVariant* function(GSettings* settings, const(char)* key) c_g_settings_get_user_value;
4203 	GVariant* function(GSettings* settings, const(char)* key) c_g_settings_get_value;
4204 	int function(GSettings* settings, const(char)* name) c_g_settings_is_writable;
4205 	char** function(GSettings* settings) c_g_settings_list_children;
4206 	char** function(GSettings* settings) c_g_settings_list_keys;
4207 	int function(GSettings* settings, const(char)* key, GVariant* value) c_g_settings_range_check;
4208 	void function(GSettings* settings, const(char)* key) c_g_settings_reset;
4209 	void function(GSettings* settings) c_g_settings_revert;
4210 	int function(GSettings* settings, const(char)* key, const(char)* format, ... ) c_g_settings_set;
4211 	int function(GSettings* settings, const(char)* key, int value) c_g_settings_set_boolean;
4212 	int function(GSettings* settings, const(char)* key, double value) c_g_settings_set_double;
4213 	int function(GSettings* settings, const(char)* key, int value) c_g_settings_set_enum;
4214 	int function(GSettings* settings, const(char)* key, uint value) c_g_settings_set_flags;
4215 	int function(GSettings* settings, const(char)* key, int value) c_g_settings_set_int;
4216 	int function(GSettings* settings, const(char)* key, long value) c_g_settings_set_int64;
4217 	int function(GSettings* settings, const(char)* key, const(char)* value) c_g_settings_set_string;
4218 	int function(GSettings* settings, const(char)* key, char** value) c_g_settings_set_strv;
4219 	int function(GSettings* settings, const(char)* key, uint value) c_g_settings_set_uint;
4220 	int function(GSettings* settings, const(char)* key, ulong value) c_g_settings_set_uint64;
4221 	int function(GSettings* settings, const(char)* key, GVariant* value) c_g_settings_set_value;
4222 
4223 	// gio.SettingsBackend
4224 
4225 	GType function() c_g_settings_backend_get_type;
4226 	void function(GTree* tree, char** path, char*** keys, GVariant*** values) c_g_settings_backend_flatten_tree;
4227 	GSettingsBackend* function() c_g_settings_backend_get_default;
4228 	void function(GSettingsBackend* backend, const(char)* key, void* originTag) c_g_settings_backend_changed;
4229 	void function(GSettingsBackend* backend, GTree* tree, void* originTag) c_g_settings_backend_changed_tree;
4230 	void function(GSettingsBackend* backend, const(char)* path, char** items, void* originTag) c_g_settings_backend_keys_changed;
4231 	void function(GSettingsBackend* backend, const(char)* path, void* originTag) c_g_settings_backend_path_changed;
4232 	void function(GSettingsBackend* backend, const(char)* path) c_g_settings_backend_path_writable_changed;
4233 	void function(GSettingsBackend* backend, const(char)* key) c_g_settings_backend_writable_changed;
4234 	GSettingsBackend* function(const(char)* filename, const(char)* rootPath, const(char)* rootGroup) c_g_keyfile_settings_backend_new;
4235 	GSettingsBackend* function() c_g_memory_settings_backend_new;
4236 	GSettingsBackend* function() c_g_null_settings_backend_new;
4237 
4238 	// gio.SettingsSchema
4239 
4240 	GType function() c_g_settings_schema_get_type;
4241 	const(char)* function(GSettingsSchema* schema) c_g_settings_schema_get_id;
4242 	GSettingsSchemaKey* function(GSettingsSchema* schema, const(char)* name) c_g_settings_schema_get_key;
4243 	const(char)* function(GSettingsSchema* schema) c_g_settings_schema_get_path;
4244 	int function(GSettingsSchema* schema, const(char)* name) c_g_settings_schema_has_key;
4245 	char** function(GSettingsSchema* schema) c_g_settings_schema_list_children;
4246 	char** function(GSettingsSchema* schema) c_g_settings_schema_list_keys;
4247 	GSettingsSchema* function(GSettingsSchema* schema) c_g_settings_schema_ref;
4248 	void function(GSettingsSchema* schema) c_g_settings_schema_unref;
4249 
4250 	// gio.SettingsSchemaKey
4251 
4252 	GType function() c_g_settings_schema_key_get_type;
4253 	GVariant* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_default_value;
4254 	const(char)* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_description;
4255 	const(char)* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_name;
4256 	GVariant* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_range;
4257 	const(char)* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_summary;
4258 	GVariantType* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_value_type;
4259 	int function(GSettingsSchemaKey* key, GVariant* value) c_g_settings_schema_key_range_check;
4260 	GSettingsSchemaKey* function(GSettingsSchemaKey* key) c_g_settings_schema_key_ref;
4261 	void function(GSettingsSchemaKey* key) c_g_settings_schema_key_unref;
4262 
4263 	// gio.SettingsSchemaSource
4264 
4265 	GType function() c_g_settings_schema_source_get_type;
4266 	GSettingsSchemaSource* function(char* directory, GSettingsSchemaSource* parent, int trusted, GError** err) c_g_settings_schema_source_new_from_directory;
4267 	void function(GSettingsSchemaSource* source, int recursive, char*** nonRelocatable, char*** relocatable) c_g_settings_schema_source_list_schemas;
4268 	GSettingsSchema* function(GSettingsSchemaSource* source, const(char)* schemaId, int recursive) c_g_settings_schema_source_lookup;
4269 	GSettingsSchemaSource* function(GSettingsSchemaSource* source) c_g_settings_schema_source_ref;
4270 	void function(GSettingsSchemaSource* source) c_g_settings_schema_source_unref;
4271 	GSettingsSchemaSource* function() c_g_settings_schema_source_get_default;
4272 
4273 	// gio.SimpleAction
4274 
4275 	GType function() c_g_simple_action_get_type;
4276 	GSimpleAction* function(const(char)* name, GVariantType* parameterType) c_g_simple_action_new;
4277 	GSimpleAction* function(const(char)* name, GVariantType* parameterType, GVariant* state) c_g_simple_action_new_stateful;
4278 	void function(GSimpleAction* simple, int enabled) c_g_simple_action_set_enabled;
4279 	void function(GSimpleAction* simple, GVariant* value) c_g_simple_action_set_state;
4280 	void function(GSimpleAction* simple, GVariant* stateHint) c_g_simple_action_set_state_hint;
4281 
4282 	// gio.SimpleActionGroup
4283 
4284 	GType function() c_g_simple_action_group_get_type;
4285 	GSimpleActionGroup* function() c_g_simple_action_group_new;
4286 	void function(GSimpleActionGroup* simple, GActionEntry* entries, int nEntries, void* userData) c_g_simple_action_group_add_entries;
4287 	void function(GSimpleActionGroup* simple, GAction* action) c_g_simple_action_group_insert;
4288 	GAction* function(GSimpleActionGroup* simple, const(char)* actionName) c_g_simple_action_group_lookup;
4289 	void function(GSimpleActionGroup* simple, const(char)* actionName) c_g_simple_action_group_remove;
4290 
4291 	// gio.SimpleAsyncResult
4292 
4293 	GType function() c_g_simple_async_result_get_type;
4294 	GSimpleAsyncResult* function(GObject* sourceObject, GAsyncReadyCallback callback, void* userData, void* sourceTag) c_g_simple_async_result_new;
4295 	GSimpleAsyncResult* function(GObject* sourceObject, GAsyncReadyCallback callback, void* userData, GQuark domain, int code, const(char)* format, ... ) c_g_simple_async_result_new_error;
4296 	GSimpleAsyncResult* function(GObject* sourceObject, GAsyncReadyCallback callback, void* userData, GError* error) c_g_simple_async_result_new_from_error;
4297 	GSimpleAsyncResult* function(GObject* sourceObject, GAsyncReadyCallback callback, void* userData, GError* error) c_g_simple_async_result_new_take_error;
4298 	int function(GAsyncResult* result, GObject* source, void* sourceTag) c_g_simple_async_result_is_valid;
4299 	void function(GSimpleAsyncResult* simple) c_g_simple_async_result_complete;
4300 	void function(GSimpleAsyncResult* simple) c_g_simple_async_result_complete_in_idle;
4301 	int function(GSimpleAsyncResult* simple) c_g_simple_async_result_get_op_res_gboolean;
4302 	void* function(GSimpleAsyncResult* simple) c_g_simple_async_result_get_op_res_gpointer;
4303 	ptrdiff_t function(GSimpleAsyncResult* simple) c_g_simple_async_result_get_op_res_gssize;
4304 	void* function(GSimpleAsyncResult* simple) c_g_simple_async_result_get_source_tag;
4305 	int function(GSimpleAsyncResult* simple, GError** err) c_g_simple_async_result_propagate_error;
4306 	void function(GSimpleAsyncResult* simple, GSimpleAsyncThreadFunc func, int ioPriority, GCancellable* cancellable) c_g_simple_async_result_run_in_thread;
4307 	void function(GSimpleAsyncResult* simple, GCancellable* checkCancellable) c_g_simple_async_result_set_check_cancellable;
4308 	void function(GSimpleAsyncResult* simple, GQuark domain, int code, const(char)* format, ... ) c_g_simple_async_result_set_error;
4309 	void function(GSimpleAsyncResult* simple, GQuark domain, int code, const(char)* format, void* args) c_g_simple_async_result_set_error_va;
4310 	void function(GSimpleAsyncResult* simple, GError* error) c_g_simple_async_result_set_from_error;
4311 	void function(GSimpleAsyncResult* simple, int handleCancellation) c_g_simple_async_result_set_handle_cancellation;
4312 	void function(GSimpleAsyncResult* simple, int opRes) c_g_simple_async_result_set_op_res_gboolean;
4313 	void function(GSimpleAsyncResult* simple, void* opRes, GDestroyNotify destroyOpRes) c_g_simple_async_result_set_op_res_gpointer;
4314 	void function(GSimpleAsyncResult* simple, ptrdiff_t opRes) c_g_simple_async_result_set_op_res_gssize;
4315 	void function(GSimpleAsyncResult* simple, GError* error) c_g_simple_async_result_take_error;
4316 	void function(GObject* object, GAsyncReadyCallback callback, void* userData, GQuark domain, int code, const(char)* format, ... ) c_g_simple_async_report_error_in_idle;
4317 	void function(GObject* object, GAsyncReadyCallback callback, void* userData, GError* error) c_g_simple_async_report_gerror_in_idle;
4318 	void function(GObject* object, GAsyncReadyCallback callback, void* userData, GError* error) c_g_simple_async_report_take_gerror_in_idle;
4319 
4320 	// gio.SimpleIOStream
4321 
4322 	GType function() c_g_simple_io_stream_get_type;
4323 	GIOStream* function(GInputStream* inputStream, GOutputStream* outputStream) c_g_simple_io_stream_new;
4324 
4325 	// gio.SimplePermission
4326 
4327 	GType function() c_g_simple_permission_get_type;
4328 	GPermission* function(int allowed) c_g_simple_permission_new;
4329 
4330 	// gio.SimpleProxyResolver
4331 
4332 	GType function() c_g_simple_proxy_resolver_get_type;
4333 	GProxyResolver* function(const(char)* defaultProxy, char** ignoreHosts) c_g_simple_proxy_resolver_new;
4334 	void function(GSimpleProxyResolver* resolver, const(char)* defaultProxy) c_g_simple_proxy_resolver_set_default_proxy;
4335 	void function(GSimpleProxyResolver* resolver, char** ignoreHosts) c_g_simple_proxy_resolver_set_ignore_hosts;
4336 	void function(GSimpleProxyResolver* resolver, const(char)* uriScheme, const(char)* proxy) c_g_simple_proxy_resolver_set_uri_proxy;
4337 
4338 	// gio.Socket
4339 
4340 	GType function() c_g_socket_get_type;
4341 	GSocket* function(GSocketFamily family, GSocketType type, GSocketProtocol protocol, GError** err) c_g_socket_new;
4342 	GSocket* function(int fd, GError** err) c_g_socket_new_from_fd;
4343 	GSocket* function(GSocket* socket, GCancellable* cancellable, GError** err) c_g_socket_accept;
4344 	int function(GSocket* socket, GSocketAddress* address, int allowReuse, GError** err) c_g_socket_bind;
4345 	int function(GSocket* socket, GError** err) c_g_socket_check_connect_result;
4346 	int function(GSocket* socket, GError** err) c_g_socket_close;
4347 	GIOCondition function(GSocket* socket, GIOCondition condition) c_g_socket_condition_check;
4348 	int function(GSocket* socket, GIOCondition condition, long timeoutUs, GCancellable* cancellable, GError** err) c_g_socket_condition_timed_wait;
4349 	int function(GSocket* socket, GIOCondition condition, GCancellable* cancellable, GError** err) c_g_socket_condition_wait;
4350 	int function(GSocket* socket, GSocketAddress* address, GCancellable* cancellable, GError** err) c_g_socket_connect;
4351 	GSocketConnection* function(GSocket* socket) c_g_socket_connection_factory_create_connection;
4352 	GSource* function(GSocket* socket, GIOCondition condition, GCancellable* cancellable) c_g_socket_create_source;
4353 	ptrdiff_t function(GSocket* socket) c_g_socket_get_available_bytes;
4354 	int function(GSocket* socket) c_g_socket_get_blocking;
4355 	int function(GSocket* socket) c_g_socket_get_broadcast;
4356 	GCredentials* function(GSocket* socket, GError** err) c_g_socket_get_credentials;
4357 	GSocketFamily function(GSocket* socket) c_g_socket_get_family;
4358 	int function(GSocket* socket) c_g_socket_get_fd;
4359 	int function(GSocket* socket) c_g_socket_get_keepalive;
4360 	int function(GSocket* socket) c_g_socket_get_listen_backlog;
4361 	GSocketAddress* function(GSocket* socket, GError** err) c_g_socket_get_local_address;
4362 	int function(GSocket* socket) c_g_socket_get_multicast_loopback;
4363 	uint function(GSocket* socket) c_g_socket_get_multicast_ttl;
4364 	int function(GSocket* socket, int level, int optname, int* value, GError** err) c_g_socket_get_option;
4365 	GSocketProtocol function(GSocket* socket) c_g_socket_get_protocol;
4366 	GSocketAddress* function(GSocket* socket, GError** err) c_g_socket_get_remote_address;
4367 	GSocketType function(GSocket* socket) c_g_socket_get_socket_type;
4368 	uint function(GSocket* socket) c_g_socket_get_timeout;
4369 	uint function(GSocket* socket) c_g_socket_get_ttl;
4370 	int function(GSocket* socket) c_g_socket_is_closed;
4371 	int function(GSocket* socket) c_g_socket_is_connected;
4372 	int function(GSocket* socket, GInetAddress* group, int sourceSpecific, const(char)* iface, GError** err) c_g_socket_join_multicast_group;
4373 	int function(GSocket* socket, GInetAddress* group, GInetAddress* sourceSpecific, const(char)* iface, GError** err) c_g_socket_join_multicast_group_ssm;
4374 	int function(GSocket* socket, GInetAddress* group, int sourceSpecific, const(char)* iface, GError** err) c_g_socket_leave_multicast_group;
4375 	int function(GSocket* socket, GInetAddress* group, GInetAddress* sourceSpecific, const(char)* iface, GError** err) c_g_socket_leave_multicast_group_ssm;
4376 	int function(GSocket* socket, GError** err) c_g_socket_listen;
4377 	ptrdiff_t function(GSocket* socket, char* buffer, size_t size, GCancellable* cancellable, GError** err) c_g_socket_receive;
4378 	ptrdiff_t function(GSocket* socket, GSocketAddress** address, char* buffer, size_t size, GCancellable* cancellable, GError** err) c_g_socket_receive_from;
4379 	ptrdiff_t function(GSocket* socket, GSocketAddress** address, GInputVector* vectors, int numVectors, GSocketControlMessage*** messages, int* numMessages, int* flags, GCancellable* cancellable, GError** err) c_g_socket_receive_message;
4380 	int function(GSocket* socket, GInputMessage* messages, uint numMessages, int flags, GCancellable* cancellable, GError** err) c_g_socket_receive_messages;
4381 	ptrdiff_t function(GSocket* socket, char* buffer, size_t size, int blocking, GCancellable* cancellable, GError** err) c_g_socket_receive_with_blocking;
4382 	ptrdiff_t function(GSocket* socket, char* buffer, size_t size, GCancellable* cancellable, GError** err) c_g_socket_send;
4383 	ptrdiff_t function(GSocket* socket, GSocketAddress* address, GOutputVector* vectors, int numVectors, GSocketControlMessage** messages, int numMessages, int flags, GCancellable* cancellable, GError** err) c_g_socket_send_message;
4384 	GPollableReturn function(GSocket* socket, GSocketAddress* address, GOutputVector* vectors, int numVectors, GSocketControlMessage** messages, int numMessages, int flags, long timeoutUs, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_socket_send_message_with_timeout;
4385 	int function(GSocket* socket, GOutputMessage* messages, uint numMessages, int flags, GCancellable* cancellable, GError** err) c_g_socket_send_messages;
4386 	ptrdiff_t function(GSocket* socket, GSocketAddress* address, char* buffer, size_t size, GCancellable* cancellable, GError** err) c_g_socket_send_to;
4387 	ptrdiff_t function(GSocket* socket, char* buffer, size_t size, int blocking, GCancellable* cancellable, GError** err) c_g_socket_send_with_blocking;
4388 	void function(GSocket* socket, int blocking) c_g_socket_set_blocking;
4389 	void function(GSocket* socket, int broadcast) c_g_socket_set_broadcast;
4390 	void function(GSocket* socket, int keepalive) c_g_socket_set_keepalive;
4391 	void function(GSocket* socket, int backlog) c_g_socket_set_listen_backlog;
4392 	void function(GSocket* socket, int loopback) c_g_socket_set_multicast_loopback;
4393 	void function(GSocket* socket, uint ttl) c_g_socket_set_multicast_ttl;
4394 	int function(GSocket* socket, int level, int optname, int value, GError** err) c_g_socket_set_option;
4395 	void function(GSocket* socket, uint timeout) c_g_socket_set_timeout;
4396 	void function(GSocket* socket, uint ttl) c_g_socket_set_ttl;
4397 	int function(GSocket* socket, int shutdownRead, int shutdownWrite, GError** err) c_g_socket_shutdown;
4398 	int function(GSocket* socket) c_g_socket_speaks_ipv4;
4399 
4400 	// gio.SocketAddress
4401 
4402 	GType function() c_g_socket_address_get_type;
4403 	GSocketAddress* function(void* native, size_t len) c_g_socket_address_new_from_native;
4404 	GSocketFamily function(GSocketAddress* address) c_g_socket_address_get_family;
4405 	ptrdiff_t function(GSocketAddress* address) c_g_socket_address_get_native_size;
4406 	int function(GSocketAddress* address, void* dest, size_t destlen, GError** err) c_g_socket_address_to_native;
4407 
4408 	// gio.SocketAddressEnumerator
4409 
4410 	GType function() c_g_socket_address_enumerator_get_type;
4411 	GSocketAddress* function(GSocketAddressEnumerator* enumerator, GCancellable* cancellable, GError** err) c_g_socket_address_enumerator_next;
4412 	void function(GSocketAddressEnumerator* enumerator, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_address_enumerator_next_async;
4413 	GSocketAddress* function(GSocketAddressEnumerator* enumerator, GAsyncResult* result, GError** err) c_g_socket_address_enumerator_next_finish;
4414 
4415 	// gio.SocketClient
4416 
4417 	GType function() c_g_socket_client_get_type;
4418 	GSocketClient* function() c_g_socket_client_new;
4419 	void function(GSocketClient* client, const(char)* protocol) c_g_socket_client_add_application_proxy;
4420 	GSocketConnection* function(GSocketClient* client, GSocketConnectable* connectable, GCancellable* cancellable, GError** err) c_g_socket_client_connect;
4421 	void function(GSocketClient* client, GSocketConnectable* connectable, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_client_connect_async;
4422 	GSocketConnection* function(GSocketClient* client, GAsyncResult* result, GError** err) c_g_socket_client_connect_finish;
4423 	GSocketConnection* function(GSocketClient* client, const(char)* hostAndPort, ushort defaultPort, GCancellable* cancellable, GError** err) c_g_socket_client_connect_to_host;
4424 	void function(GSocketClient* client, const(char)* hostAndPort, ushort defaultPort, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_client_connect_to_host_async;
4425 	GSocketConnection* function(GSocketClient* client, GAsyncResult* result, GError** err) c_g_socket_client_connect_to_host_finish;
4426 	GSocketConnection* function(GSocketClient* client, const(char)* domain, const(char)* service, GCancellable* cancellable, GError** err) c_g_socket_client_connect_to_service;
4427 	void function(GSocketClient* client, const(char)* domain, const(char)* service, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_client_connect_to_service_async;
4428 	GSocketConnection* function(GSocketClient* client, GAsyncResult* result, GError** err) c_g_socket_client_connect_to_service_finish;
4429 	GSocketConnection* function(GSocketClient* client, const(char)* uri, ushort defaultPort, GCancellable* cancellable, GError** err) c_g_socket_client_connect_to_uri;
4430 	void function(GSocketClient* client, const(char)* uri, ushort defaultPort, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_client_connect_to_uri_async;
4431 	GSocketConnection* function(GSocketClient* client, GAsyncResult* result, GError** err) c_g_socket_client_connect_to_uri_finish;
4432 	int function(GSocketClient* client) c_g_socket_client_get_enable_proxy;
4433 	GSocketFamily function(GSocketClient* client) c_g_socket_client_get_family;
4434 	GSocketAddress* function(GSocketClient* client) c_g_socket_client_get_local_address;
4435 	GSocketProtocol function(GSocketClient* client) c_g_socket_client_get_protocol;
4436 	GProxyResolver* function(GSocketClient* client) c_g_socket_client_get_proxy_resolver;
4437 	GSocketType function(GSocketClient* client) c_g_socket_client_get_socket_type;
4438 	uint function(GSocketClient* client) c_g_socket_client_get_timeout;
4439 	int function(GSocketClient* client) c_g_socket_client_get_tls;
4440 	GTlsCertificateFlags function(GSocketClient* client) c_g_socket_client_get_tls_validation_flags;
4441 	void function(GSocketClient* client, int enable) c_g_socket_client_set_enable_proxy;
4442 	void function(GSocketClient* client, GSocketFamily family) c_g_socket_client_set_family;
4443 	void function(GSocketClient* client, GSocketAddress* address) c_g_socket_client_set_local_address;
4444 	void function(GSocketClient* client, GSocketProtocol protocol) c_g_socket_client_set_protocol;
4445 	void function(GSocketClient* client, GProxyResolver* proxyResolver) c_g_socket_client_set_proxy_resolver;
4446 	void function(GSocketClient* client, GSocketType type) c_g_socket_client_set_socket_type;
4447 	void function(GSocketClient* client, uint timeout) c_g_socket_client_set_timeout;
4448 	void function(GSocketClient* client, int tls) c_g_socket_client_set_tls;
4449 	void function(GSocketClient* client, GTlsCertificateFlags flags) c_g_socket_client_set_tls_validation_flags;
4450 
4451 	// gio.SocketConnectable
4452 
4453 	GType function() c_g_socket_connectable_get_type;
4454 	GSocketAddressEnumerator* function(GSocketConnectable* connectable) c_g_socket_connectable_enumerate;
4455 	GSocketAddressEnumerator* function(GSocketConnectable* connectable) c_g_socket_connectable_proxy_enumerate;
4456 	char* function(GSocketConnectable* connectable) c_g_socket_connectable_to_string;
4457 
4458 	// gio.SocketConnection
4459 
4460 	GType function() c_g_socket_connection_get_type;
4461 	GType function(GSocketFamily family, GSocketType type, int protocolId) c_g_socket_connection_factory_lookup_type;
4462 	void function(GType gType, GSocketFamily family, GSocketType type, int protocol) c_g_socket_connection_factory_register_type;
4463 	int function(GSocketConnection* connection, GSocketAddress* address, GCancellable* cancellable, GError** err) c_g_socket_connection_connect;
4464 	void function(GSocketConnection* connection, GSocketAddress* address, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_connection_connect_async;
4465 	int function(GSocketConnection* connection, GAsyncResult* result, GError** err) c_g_socket_connection_connect_finish;
4466 	GSocketAddress* function(GSocketConnection* connection, GError** err) c_g_socket_connection_get_local_address;
4467 	GSocketAddress* function(GSocketConnection* connection, GError** err) c_g_socket_connection_get_remote_address;
4468 	GSocket* function(GSocketConnection* connection) c_g_socket_connection_get_socket;
4469 	int function(GSocketConnection* connection) c_g_socket_connection_is_connected;
4470 
4471 	// gio.SocketControlMessage
4472 
4473 	GType function() c_g_socket_control_message_get_type;
4474 	GSocketControlMessage* function(int level, int type, size_t size, void* data) c_g_socket_control_message_deserialize;
4475 	int function(GSocketControlMessage* message) c_g_socket_control_message_get_level;
4476 	int function(GSocketControlMessage* message) c_g_socket_control_message_get_msg_type;
4477 	size_t function(GSocketControlMessage* message) c_g_socket_control_message_get_size;
4478 	void function(GSocketControlMessage* message, void* data) c_g_socket_control_message_serialize;
4479 
4480 	// gio.SocketListener
4481 
4482 	GType function() c_g_socket_listener_get_type;
4483 	GSocketListener* function() c_g_socket_listener_new;
4484 	GSocketConnection* function(GSocketListener* listener, GObject** sourceObject, GCancellable* cancellable, GError** err) c_g_socket_listener_accept;
4485 	void function(GSocketListener* listener, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_listener_accept_async;
4486 	GSocketConnection* function(GSocketListener* listener, GAsyncResult* result, GObject** sourceObject, GError** err) c_g_socket_listener_accept_finish;
4487 	GSocket* function(GSocketListener* listener, GObject** sourceObject, GCancellable* cancellable, GError** err) c_g_socket_listener_accept_socket;
4488 	void function(GSocketListener* listener, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_listener_accept_socket_async;
4489 	GSocket* function(GSocketListener* listener, GAsyncResult* result, GObject** sourceObject, GError** err) c_g_socket_listener_accept_socket_finish;
4490 	int function(GSocketListener* listener, GSocketAddress* address, GSocketType type, GSocketProtocol protocol, GObject* sourceObject, GSocketAddress** effectiveAddress, GError** err) c_g_socket_listener_add_address;
4491 	ushort function(GSocketListener* listener, GObject* sourceObject, GError** err) c_g_socket_listener_add_any_inet_port;
4492 	int function(GSocketListener* listener, ushort port, GObject* sourceObject, GError** err) c_g_socket_listener_add_inet_port;
4493 	int function(GSocketListener* listener, GSocket* socket, GObject* sourceObject, GError** err) c_g_socket_listener_add_socket;
4494 	void function(GSocketListener* listener) c_g_socket_listener_close;
4495 	void function(GSocketListener* listener, int listenBacklog) c_g_socket_listener_set_backlog;
4496 
4497 	// gio.SocketService
4498 
4499 	GType function() c_g_socket_service_get_type;
4500 	GSocketService* function() c_g_socket_service_new;
4501 	int function(GSocketService* service) c_g_socket_service_is_active;
4502 	void function(GSocketService* service) c_g_socket_service_start;
4503 	void function(GSocketService* service) c_g_socket_service_stop;
4504 
4505 	// gio.SrvTarget
4506 
4507 	GType function() c_g_srv_target_get_type;
4508 	GSrvTarget* function(const(char)* hostname, ushort port, ushort priority, ushort weight) c_g_srv_target_new;
4509 	GSrvTarget* function(GSrvTarget* target) c_g_srv_target_copy;
4510 	void function(GSrvTarget* target) c_g_srv_target_free;
4511 	const(char)* function(GSrvTarget* target) c_g_srv_target_get_hostname;
4512 	ushort function(GSrvTarget* target) c_g_srv_target_get_port;
4513 	ushort function(GSrvTarget* target) c_g_srv_target_get_priority;
4514 	ushort function(GSrvTarget* target) c_g_srv_target_get_weight;
4515 	GList* function(GList* targets) c_g_srv_target_list_sort;
4516 
4517 	// gio.StaticResource
4518 
4519 	void function(GStaticResource* staticResource) c_g_static_resource_fini;
4520 	GResource* function(GStaticResource* staticResource) c_g_static_resource_get_resource;
4521 	void function(GStaticResource* staticResource) c_g_static_resource_init;
4522 
4523 	// gio.Subprocess
4524 
4525 	GType function() c_g_subprocess_get_type;
4526 	GSubprocess* function(GSubprocessFlags flags, GError** error, const(char)* argv0, ... ) c_g_subprocess_new;
4527 	GSubprocess* function(char** argv, GSubprocessFlags flags, GError** err) c_g_subprocess_newv;
4528 	int function(GSubprocess* subprocess, GBytes* stdinBuf, GCancellable* cancellable, GBytes** stdoutBuf, GBytes** stderrBuf, GError** err) c_g_subprocess_communicate;
4529 	void function(GSubprocess* subprocess, GBytes* stdinBuf, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_subprocess_communicate_async;
4530 	int function(GSubprocess* subprocess, GAsyncResult* result, GBytes** stdoutBuf, GBytes** stderrBuf, GError** err) c_g_subprocess_communicate_finish;
4531 	int function(GSubprocess* subprocess, const(char)* stdinBuf, GCancellable* cancellable, char** stdoutBuf, char** stderrBuf, GError** err) c_g_subprocess_communicate_utf8;
4532 	void function(GSubprocess* subprocess, const(char)* stdinBuf, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_subprocess_communicate_utf8_async;
4533 	int function(GSubprocess* subprocess, GAsyncResult* result, char** stdoutBuf, char** stderrBuf, GError** err) c_g_subprocess_communicate_utf8_finish;
4534 	void function(GSubprocess* subprocess) c_g_subprocess_force_exit;
4535 	int function(GSubprocess* subprocess) c_g_subprocess_get_exit_status;
4536 	const(char)* function(GSubprocess* subprocess) c_g_subprocess_get_identifier;
4537 	int function(GSubprocess* subprocess) c_g_subprocess_get_if_exited;
4538 	int function(GSubprocess* subprocess) c_g_subprocess_get_if_signaled;
4539 	int function(GSubprocess* subprocess) c_g_subprocess_get_status;
4540 	GInputStream* function(GSubprocess* subprocess) c_g_subprocess_get_stderr_pipe;
4541 	GOutputStream* function(GSubprocess* subprocess) c_g_subprocess_get_stdin_pipe;
4542 	GInputStream* function(GSubprocess* subprocess) c_g_subprocess_get_stdout_pipe;
4543 	int function(GSubprocess* subprocess) c_g_subprocess_get_successful;
4544 	int function(GSubprocess* subprocess) c_g_subprocess_get_term_sig;
4545 	void function(GSubprocess* subprocess, int signalNum) c_g_subprocess_send_signal;
4546 	int function(GSubprocess* subprocess, GCancellable* cancellable, GError** err) c_g_subprocess_wait;
4547 	void function(GSubprocess* subprocess, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_subprocess_wait_async;
4548 	int function(GSubprocess* subprocess, GCancellable* cancellable, GError** err) c_g_subprocess_wait_check;
4549 	void function(GSubprocess* subprocess, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_subprocess_wait_check_async;
4550 	int function(GSubprocess* subprocess, GAsyncResult* result, GError** err) c_g_subprocess_wait_check_finish;
4551 	int function(GSubprocess* subprocess, GAsyncResult* result, GError** err) c_g_subprocess_wait_finish;
4552 
4553 	// gio.SubprocessLauncher
4554 
4555 	GType function() c_g_subprocess_launcher_get_type;
4556 	GSubprocessLauncher* function(GSubprocessFlags flags) c_g_subprocess_launcher_new;
4557 	void function(GSubprocessLauncher* self) c_g_subprocess_launcher_close;
4558 	char* function(GSubprocessLauncher* self, char* variable) c_g_subprocess_launcher_getenv;
4559 	void function(GSubprocessLauncher* self, GSpawnChildSetupFunc childSetup, void* userData, GDestroyNotify destroyNotify) c_g_subprocess_launcher_set_child_setup;
4560 	void function(GSubprocessLauncher* self, char* cwd) c_g_subprocess_launcher_set_cwd;
4561 	void function(GSubprocessLauncher* self, char** env) c_g_subprocess_launcher_set_environ;
4562 	void function(GSubprocessLauncher* self, GSubprocessFlags flags) c_g_subprocess_launcher_set_flags;
4563 	void function(GSubprocessLauncher* self, char* path) c_g_subprocess_launcher_set_stderr_file_path;
4564 	void function(GSubprocessLauncher* self, const(char)* path) c_g_subprocess_launcher_set_stdin_file_path;
4565 	void function(GSubprocessLauncher* self, char* path) c_g_subprocess_launcher_set_stdout_file_path;
4566 	void function(GSubprocessLauncher* self, char* variable, char* value, int overwrite) c_g_subprocess_launcher_setenv;
4567 	GSubprocess* function(GSubprocessLauncher* self, GError** error, const(char)* argv0, ... ) c_g_subprocess_launcher_spawn;
4568 	GSubprocess* function(GSubprocessLauncher* self, char** argv, GError** err) c_g_subprocess_launcher_spawnv;
4569 	void function(GSubprocessLauncher* self, int sourceFd, int targetFd) c_g_subprocess_launcher_take_fd;
4570 	void function(GSubprocessLauncher* self, int fd) c_g_subprocess_launcher_take_stderr_fd;
4571 	void function(GSubprocessLauncher* self, int fd) c_g_subprocess_launcher_take_stdin_fd;
4572 	void function(GSubprocessLauncher* self, int fd) c_g_subprocess_launcher_take_stdout_fd;
4573 	void function(GSubprocessLauncher* self, char* variable) c_g_subprocess_launcher_unsetenv;
4574 
4575 	// gio.Task
4576 
4577 	GType function() c_g_task_get_type;
4578 	GTask* function(void* sourceObject, GCancellable* cancellable, GAsyncReadyCallback callback, void* callbackData) c_g_task_new;
4579 	int function(void* result, void* sourceObject) c_g_task_is_valid;
4580 	void function(void* sourceObject, GAsyncReadyCallback callback, void* callbackData, void* sourceTag, GError* error) c_g_task_report_error;
4581 	void function(void* sourceObject, GAsyncReadyCallback callback, void* callbackData, void* sourceTag, GQuark domain, int code, const(char)* format, ... ) c_g_task_report_new_error;
4582 	void function(GTask* task, GSource* source, GSourceFunc callback) c_g_task_attach_source;
4583 	GCancellable* function(GTask* task) c_g_task_get_cancellable;
4584 	int function(GTask* task) c_g_task_get_check_cancellable;
4585 	int function(GTask* task) c_g_task_get_completed;
4586 	GMainContext* function(GTask* task) c_g_task_get_context;
4587 	const(char)* function(GTask* task) c_g_task_get_name;
4588 	int function(GTask* task) c_g_task_get_priority;
4589 	int function(GTask* task) c_g_task_get_return_on_cancel;
4590 	void* function(GTask* task) c_g_task_get_source_object;
4591 	void* function(GTask* task) c_g_task_get_source_tag;
4592 	void* function(GTask* task) c_g_task_get_task_data;
4593 	int function(GTask* task) c_g_task_had_error;
4594 	int function(GTask* task, GError** err) c_g_task_propagate_boolean;
4595 	ptrdiff_t function(GTask* task, GError** err) c_g_task_propagate_int;
4596 	void* function(GTask* task, GError** err) c_g_task_propagate_pointer;
4597 	int function(GTask* task, GValue* value, GError** err) c_g_task_propagate_value;
4598 	void function(GTask* task, int result) c_g_task_return_boolean;
4599 	void function(GTask* task, GError* error) c_g_task_return_error;
4600 	int function(GTask* task) c_g_task_return_error_if_cancelled;
4601 	void function(GTask* task, ptrdiff_t result) c_g_task_return_int;
4602 	void function(GTask* task, GQuark domain, int code, const(char)* format, ... ) c_g_task_return_new_error;
4603 	void function(GTask* task, void* result, GDestroyNotify resultDestroy) c_g_task_return_pointer;
4604 	void function(GTask* task, GValue* result) c_g_task_return_value;
4605 	void function(GTask* task, GTaskThreadFunc taskFunc) c_g_task_run_in_thread;
4606 	void function(GTask* task, GTaskThreadFunc taskFunc) c_g_task_run_in_thread_sync;
4607 	void function(GTask* task, int checkCancellable) c_g_task_set_check_cancellable;
4608 	void function(GTask* task, const(char)* name) c_g_task_set_name;
4609 	void function(GTask* task, int priority) c_g_task_set_priority;
4610 	int function(GTask* task, int returnOnCancel) c_g_task_set_return_on_cancel;
4611 	void function(GTask* task, void* sourceTag) c_g_task_set_source_tag;
4612 	void function(GTask* task, void* taskData, GDestroyNotify taskDataDestroy) c_g_task_set_task_data;
4613 
4614 	// gio.TcpConnection
4615 
4616 	GType function() c_g_tcp_connection_get_type;
4617 	int function(GTcpConnection* connection) c_g_tcp_connection_get_graceful_disconnect;
4618 	void function(GTcpConnection* connection, int gracefulDisconnect) c_g_tcp_connection_set_graceful_disconnect;
4619 
4620 	// gio.TcpWrapperConnection
4621 
4622 	GType function() c_g_tcp_wrapper_connection_get_type;
4623 	GSocketConnection* function(GIOStream* baseIoStream, GSocket* socket) c_g_tcp_wrapper_connection_new;
4624 	GIOStream* function(GTcpWrapperConnection* conn) c_g_tcp_wrapper_connection_get_base_io_stream;
4625 
4626 	// gio.TestDBus
4627 
4628 	GType function() c_g_test_dbus_get_type;
4629 	GTestDBus* function(GTestDBusFlags flags) c_g_test_dbus_new;
4630 	void function() c_g_test_dbus_unset;
4631 	void function(GTestDBus* self, const(char)* path) c_g_test_dbus_add_service_dir;
4632 	void function(GTestDBus* self) c_g_test_dbus_down;
4633 	const(char)* function(GTestDBus* self) c_g_test_dbus_get_bus_address;
4634 	GTestDBusFlags function(GTestDBus* self) c_g_test_dbus_get_flags;
4635 	void function(GTestDBus* self) c_g_test_dbus_stop;
4636 	void function(GTestDBus* self) c_g_test_dbus_up;
4637 
4638 	// gio.ThemedIcon
4639 
4640 	GType function() c_g_themed_icon_get_type;
4641 	GIcon* function(const(char)* iconname) c_g_themed_icon_new;
4642 	GIcon* function(char** iconnames, int len) c_g_themed_icon_new_from_names;
4643 	GIcon* function(const(char)* iconname) c_g_themed_icon_new_with_default_fallbacks;
4644 	void function(GThemedIcon* icon, const(char)* iconname) c_g_themed_icon_append_name;
4645 	char** function(GThemedIcon* icon) c_g_themed_icon_get_names;
4646 	void function(GThemedIcon* icon, const(char)* iconname) c_g_themed_icon_prepend_name;
4647 
4648 	// gio.ThreadedSocketService
4649 
4650 	GType function() c_g_threaded_socket_service_get_type;
4651 	GSocketService* function(int maxThreads) c_g_threaded_socket_service_new;
4652 
4653 	// gio.TlsBackend
4654 
4655 	GType function() c_g_tls_backend_get_type;
4656 	GTlsBackend* function() c_g_tls_backend_get_default;
4657 	GType function(GTlsBackend* backend) c_g_tls_backend_get_certificate_type;
4658 	GType function(GTlsBackend* backend) c_g_tls_backend_get_client_connection_type;
4659 	GTlsDatabase* function(GTlsBackend* backend) c_g_tls_backend_get_default_database;
4660 	GType function(GTlsBackend* backend) c_g_tls_backend_get_dtls_client_connection_type;
4661 	GType function(GTlsBackend* backend) c_g_tls_backend_get_dtls_server_connection_type;
4662 	GType function(GTlsBackend* backend) c_g_tls_backend_get_file_database_type;
4663 	GType function(GTlsBackend* backend) c_g_tls_backend_get_server_connection_type;
4664 	void function(GTlsBackend* backend, GTlsDatabase* database) c_g_tls_backend_set_default_database;
4665 	int function(GTlsBackend* backend) c_g_tls_backend_supports_dtls;
4666 	int function(GTlsBackend* backend) c_g_tls_backend_supports_tls;
4667 
4668 	// gio.TlsCertificate
4669 
4670 	GType function() c_g_tls_certificate_get_type;
4671 	GTlsCertificate* function(char* file, GError** err) c_g_tls_certificate_new_from_file;
4672 	GTlsCertificate* function(char* file, const(char)* password, GError** err) c_g_tls_certificate_new_from_file_with_password;
4673 	GTlsCertificate* function(char* certFile, char* keyFile, GError** err) c_g_tls_certificate_new_from_files;
4674 	GTlsCertificate* function(const(char)* data, ptrdiff_t length, GError** err) c_g_tls_certificate_new_from_pem;
4675 	GTlsCertificate* function(const(char)* pkcs11Uri, const(char)* privateKeyPkcs11Uri, GError** err) c_g_tls_certificate_new_from_pkcs11_uris;
4676 	GTlsCertificate* function(ubyte* data, size_t length, const(char)* password, GError** err) c_g_tls_certificate_new_from_pkcs12;
4677 	GList* function(char* file, GError** err) c_g_tls_certificate_list_new_from_file;
4678 	GPtrArray* function(GTlsCertificate* cert) c_g_tls_certificate_get_dns_names;
4679 	GPtrArray* function(GTlsCertificate* cert) c_g_tls_certificate_get_ip_addresses;
4680 	GTlsCertificate* function(GTlsCertificate* cert) c_g_tls_certificate_get_issuer;
4681 	char* function(GTlsCertificate* cert) c_g_tls_certificate_get_issuer_name;
4682 	GDateTime* function(GTlsCertificate* cert) c_g_tls_certificate_get_not_valid_after;
4683 	GDateTime* function(GTlsCertificate* cert) c_g_tls_certificate_get_not_valid_before;
4684 	char* function(GTlsCertificate* cert) c_g_tls_certificate_get_subject_name;
4685 	int function(GTlsCertificate* certOne, GTlsCertificate* certTwo) c_g_tls_certificate_is_same;
4686 	GTlsCertificateFlags function(GTlsCertificate* cert, GSocketConnectable* identity, GTlsCertificate* trustedCa) c_g_tls_certificate_verify;
4687 
4688 	// gio.TlsClientConnection
4689 
4690 	GType function() c_g_tls_client_connection_get_type;
4691 	GIOStream* function(GIOStream* baseIoStream, GSocketConnectable* serverIdentity, GError** err) c_g_tls_client_connection_new;
4692 	void function(GTlsClientConnection* conn, GTlsClientConnection* source) c_g_tls_client_connection_copy_session_state;
4693 	GList* function(GTlsClientConnection* conn) c_g_tls_client_connection_get_accepted_cas;
4694 	GSocketConnectable* function(GTlsClientConnection* conn) c_g_tls_client_connection_get_server_identity;
4695 	int function(GTlsClientConnection* conn) c_g_tls_client_connection_get_use_ssl3;
4696 	GTlsCertificateFlags function(GTlsClientConnection* conn) c_g_tls_client_connection_get_validation_flags;
4697 	void function(GTlsClientConnection* conn, GSocketConnectable* identity) c_g_tls_client_connection_set_server_identity;
4698 	void function(GTlsClientConnection* conn, int useSsl3) c_g_tls_client_connection_set_use_ssl3;
4699 	void function(GTlsClientConnection* conn, GTlsCertificateFlags flags) c_g_tls_client_connection_set_validation_flags;
4700 
4701 	// gio.TlsConnection
4702 
4703 	GType function() c_g_tls_connection_get_type;
4704 	int function(GTlsConnection* conn, GTlsCertificate* peerCert, GTlsCertificateFlags errors) c_g_tls_connection_emit_accept_certificate;
4705 	GTlsCertificate* function(GTlsConnection* conn) c_g_tls_connection_get_certificate;
4706 	int function(GTlsConnection* conn, GTlsChannelBindingType type, GByteArray* data, GError** err) c_g_tls_connection_get_channel_binding_data;
4707 	char* function(GTlsConnection* conn) c_g_tls_connection_get_ciphersuite_name;
4708 	GTlsDatabase* function(GTlsConnection* conn) c_g_tls_connection_get_database;
4709 	GTlsInteraction* function(GTlsConnection* conn) c_g_tls_connection_get_interaction;
4710 	const(char)* function(GTlsConnection* conn) c_g_tls_connection_get_negotiated_protocol;
4711 	GTlsCertificate* function(GTlsConnection* conn) c_g_tls_connection_get_peer_certificate;
4712 	GTlsCertificateFlags function(GTlsConnection* conn) c_g_tls_connection_get_peer_certificate_errors;
4713 	GTlsProtocolVersion function(GTlsConnection* conn) c_g_tls_connection_get_protocol_version;
4714 	GTlsRehandshakeMode function(GTlsConnection* conn) c_g_tls_connection_get_rehandshake_mode;
4715 	int function(GTlsConnection* conn) c_g_tls_connection_get_require_close_notify;
4716 	int function(GTlsConnection* conn) c_g_tls_connection_get_use_system_certdb;
4717 	int function(GTlsConnection* conn, GCancellable* cancellable, GError** err) c_g_tls_connection_handshake;
4718 	void function(GTlsConnection* conn, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_connection_handshake_async;
4719 	int function(GTlsConnection* conn, GAsyncResult* result, GError** err) c_g_tls_connection_handshake_finish;
4720 	void function(GTlsConnection* conn, char** protocols) c_g_tls_connection_set_advertised_protocols;
4721 	void function(GTlsConnection* conn, GTlsCertificate* certificate) c_g_tls_connection_set_certificate;
4722 	void function(GTlsConnection* conn, GTlsDatabase* database) c_g_tls_connection_set_database;
4723 	void function(GTlsConnection* conn, GTlsInteraction* interaction) c_g_tls_connection_set_interaction;
4724 	void function(GTlsConnection* conn, GTlsRehandshakeMode mode) c_g_tls_connection_set_rehandshake_mode;
4725 	void function(GTlsConnection* conn, int requireCloseNotify) c_g_tls_connection_set_require_close_notify;
4726 	void function(GTlsConnection* conn, int useSystemCertdb) c_g_tls_connection_set_use_system_certdb;
4727 
4728 	// gio.TlsDatabase
4729 
4730 	GType function() c_g_tls_database_get_type;
4731 	char* function(GTlsDatabase* self, GTlsCertificate* certificate) c_g_tls_database_create_certificate_handle;
4732 	GTlsCertificate* function(GTlsDatabase* self, const(char)* handle, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GError** err) c_g_tls_database_lookup_certificate_for_handle;
4733 	void function(GTlsDatabase* self, const(char)* handle, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_database_lookup_certificate_for_handle_async;
4734 	GTlsCertificate* function(GTlsDatabase* self, GAsyncResult* result, GError** err) c_g_tls_database_lookup_certificate_for_handle_finish;
4735 	GTlsCertificate* function(GTlsDatabase* self, GTlsCertificate* certificate, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GError** err) c_g_tls_database_lookup_certificate_issuer;
4736 	void function(GTlsDatabase* self, GTlsCertificate* certificate, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_database_lookup_certificate_issuer_async;
4737 	GTlsCertificate* function(GTlsDatabase* self, GAsyncResult* result, GError** err) c_g_tls_database_lookup_certificate_issuer_finish;
4738 	GList* function(GTlsDatabase* self, GByteArray* issuerRawDn, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GError** err) c_g_tls_database_lookup_certificates_issued_by;
4739 	void function(GTlsDatabase* self, GByteArray* issuerRawDn, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_database_lookup_certificates_issued_by_async;
4740 	GList* function(GTlsDatabase* self, GAsyncResult* result, GError** err) c_g_tls_database_lookup_certificates_issued_by_finish;
4741 	GTlsCertificateFlags function(GTlsDatabase* self, GTlsCertificate* chain, const(char)* purpose, GSocketConnectable* identity, GTlsInteraction* interaction, GTlsDatabaseVerifyFlags flags, GCancellable* cancellable, GError** err) c_g_tls_database_verify_chain;
4742 	void function(GTlsDatabase* self, GTlsCertificate* chain, const(char)* purpose, GSocketConnectable* identity, GTlsInteraction* interaction, GTlsDatabaseVerifyFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_database_verify_chain_async;
4743 	GTlsCertificateFlags function(GTlsDatabase* self, GAsyncResult* result, GError** err) c_g_tls_database_verify_chain_finish;
4744 
4745 	// gio.TlsFileDatabase
4746 
4747 	GType function() c_g_tls_file_database_get_type;
4748 	GTlsDatabase* function(char* anchors, GError** err) c_g_tls_file_database_new;
4749 
4750 	// gio.TlsInteraction
4751 
4752 	GType function() c_g_tls_interaction_get_type;
4753 	GTlsInteractionResult function(GTlsInteraction* interaction, GTlsPassword* password, GCancellable* cancellable, GError** err) c_g_tls_interaction_ask_password;
4754 	void function(GTlsInteraction* interaction, GTlsPassword* password, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_interaction_ask_password_async;
4755 	GTlsInteractionResult function(GTlsInteraction* interaction, GAsyncResult* result, GError** err) c_g_tls_interaction_ask_password_finish;
4756 	GTlsInteractionResult function(GTlsInteraction* interaction, GTlsPassword* password, GCancellable* cancellable, GError** err) c_g_tls_interaction_invoke_ask_password;
4757 	GTlsInteractionResult function(GTlsInteraction* interaction, GTlsConnection* connection, GTlsCertificateRequestFlags flags, GCancellable* cancellable, GError** err) c_g_tls_interaction_invoke_request_certificate;
4758 	GTlsInteractionResult function(GTlsInteraction* interaction, GTlsConnection* connection, GTlsCertificateRequestFlags flags, GCancellable* cancellable, GError** err) c_g_tls_interaction_request_certificate;
4759 	void function(GTlsInteraction* interaction, GTlsConnection* connection, GTlsCertificateRequestFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_interaction_request_certificate_async;
4760 	GTlsInteractionResult function(GTlsInteraction* interaction, GAsyncResult* result, GError** err) c_g_tls_interaction_request_certificate_finish;
4761 
4762 	// gio.TlsPassword
4763 
4764 	GType function() c_g_tls_password_get_type;
4765 	GTlsPassword* function(GTlsPasswordFlags flags, const(char)* description) c_g_tls_password_new;
4766 	const(char)* function(GTlsPassword* password) c_g_tls_password_get_description;
4767 	GTlsPasswordFlags function(GTlsPassword* password) c_g_tls_password_get_flags;
4768 	char* function(GTlsPassword* password, size_t* length) c_g_tls_password_get_value;
4769 	const(char)* function(GTlsPassword* password) c_g_tls_password_get_warning;
4770 	void function(GTlsPassword* password, const(char)* description) c_g_tls_password_set_description;
4771 	void function(GTlsPassword* password, GTlsPasswordFlags flags) c_g_tls_password_set_flags;
4772 	void function(GTlsPassword* password, char* value, ptrdiff_t length) c_g_tls_password_set_value;
4773 	void function(GTlsPassword* password, char* value, ptrdiff_t length, GDestroyNotify destroy) c_g_tls_password_set_value_full;
4774 	void function(GTlsPassword* password, const(char)* warning) c_g_tls_password_set_warning;
4775 
4776 	// gio.TlsServerConnection
4777 
4778 	GType function() c_g_tls_server_connection_get_type;
4779 	GIOStream* function(GIOStream* baseIoStream, GTlsCertificate* certificate, GError** err) c_g_tls_server_connection_new;
4780 
4781 	// gio.UnixConnection
4782 
4783 	GType function() c_g_unix_connection_get_type;
4784 	GCredentials* function(GUnixConnection* connection, GCancellable* cancellable, GError** err) c_g_unix_connection_receive_credentials;
4785 	void function(GUnixConnection* connection, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_unix_connection_receive_credentials_async;
4786 	GCredentials* function(GUnixConnection* connection, GAsyncResult* result, GError** err) c_g_unix_connection_receive_credentials_finish;
4787 	int function(GUnixConnection* connection, GCancellable* cancellable, GError** err) c_g_unix_connection_receive_fd;
4788 	int function(GUnixConnection* connection, GCancellable* cancellable, GError** err) c_g_unix_connection_send_credentials;
4789 	void function(GUnixConnection* connection, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_unix_connection_send_credentials_async;
4790 	int function(GUnixConnection* connection, GAsyncResult* result, GError** err) c_g_unix_connection_send_credentials_finish;
4791 	int function(GUnixConnection* connection, int fd, GCancellable* cancellable, GError** err) c_g_unix_connection_send_fd;
4792 
4793 	// gio.UnixCredentialsMessage
4794 
4795 	GType function() c_g_unix_credentials_message_get_type;
4796 	GSocketControlMessage* function() c_g_unix_credentials_message_new;
4797 	GSocketControlMessage* function(GCredentials* credentials) c_g_unix_credentials_message_new_with_credentials;
4798 	int function() c_g_unix_credentials_message_is_supported;
4799 	GCredentials* function(GUnixCredentialsMessage* message) c_g_unix_credentials_message_get_credentials;
4800 
4801 	// gio.UnixFDList
4802 
4803 	GType function() c_g_unix_fd_list_get_type;
4804 	GUnixFDList* function() c_g_unix_fd_list_new;
4805 	GUnixFDList* function(int* fds, int nFds) c_g_unix_fd_list_new_from_array;
4806 	int function(GUnixFDList* list, int fd, GError** err) c_g_unix_fd_list_append;
4807 	int function(GUnixFDList* list, int index, GError** err) c_g_unix_fd_list_get;
4808 	int function(GUnixFDList* list) c_g_unix_fd_list_get_length;
4809 	int* function(GUnixFDList* list, int* length) c_g_unix_fd_list_peek_fds;
4810 	int* function(GUnixFDList* list, int* length) c_g_unix_fd_list_steal_fds;
4811 
4812 	// gio.UnixFDMessage
4813 
4814 	GType function() c_g_unix_fd_message_get_type;
4815 	GSocketControlMessage* function() c_g_unix_fd_message_new;
4816 	GSocketControlMessage* function(GUnixFDList* fdList) c_g_unix_fd_message_new_with_fd_list;
4817 	int function(GUnixFDMessage* message, int fd, GError** err) c_g_unix_fd_message_append_fd;
4818 	GUnixFDList* function(GUnixFDMessage* message) c_g_unix_fd_message_get_fd_list;
4819 	int* function(GUnixFDMessage* message, int* length) c_g_unix_fd_message_steal_fds;
4820 
4821 	// gio.UnixInputStream
4822 
4823 	GType function() c_g_unix_input_stream_get_type;
4824 	GInputStream* function(int fd, int closeFd) c_g_unix_input_stream_new;
4825 	int function(GUnixInputStream* stream) c_g_unix_input_stream_get_close_fd;
4826 	int function(GUnixInputStream* stream) c_g_unix_input_stream_get_fd;
4827 	void function(GUnixInputStream* stream, int closeFd) c_g_unix_input_stream_set_close_fd;
4828 
4829 	// gio.UnixMountEntry
4830 
4831 	GType function() c_g_unix_mount_entry_get_type;
4832 	int function(char* mountPath) c_g_unix_is_mount_path_system_internal;
4833 	GUnixMountEntry* function(char* mountPath, ulong* timeRead) c_g_unix_mount_at;
4834 	int function(GUnixMountEntry* mount1, GUnixMountEntry* mount2) c_g_unix_mount_compare;
4835 	void function(GUnixMountEntry* mountEntry) c_g_unix_mount_free;
4836 	char* function(GUnixMountEntry* mountEntry) c_g_unix_mount_get_device_path;
4837 	const(char)* function(GUnixMountEntry* mountEntry) c_g_unix_mount_get_fs_type;
4838 	char* function(GUnixMountEntry* mountEntry) c_g_unix_mount_get_mount_path;
4839 	int function(GUnixMountEntry* mountEntry) c_g_unix_mount_guess_can_eject;
4840 	GIcon* function(GUnixMountEntry* mountEntry) c_g_unix_mount_guess_icon;
4841 	char* function(GUnixMountEntry* mountEntry) c_g_unix_mount_guess_name;
4842 	int function(GUnixMountEntry* mountEntry) c_g_unix_mount_guess_should_display;
4843 	GIcon* function(GUnixMountEntry* mountEntry) c_g_unix_mount_guess_symbolic_icon;
4844 	int function(GUnixMountEntry* mountEntry) c_g_unix_mount_is_readonly;
4845 	int function(GUnixMountEntry* mountEntry) c_g_unix_mount_is_system_internal;
4846 	int function(ulong time) c_g_unix_mount_points_changed_since;
4847 	GList* function(ulong* timeRead) c_g_unix_mount_points_get;
4848 	int function(ulong time) c_g_unix_mounts_changed_since;
4849 	GList* function(ulong* timeRead) c_g_unix_mounts_get;
4850 	GUnixMountEntry* function(GUnixMountEntry* mountEntry) c_g_unix_mount_copy;
4851 	GUnixMountEntry* function(char* filePath, ulong* timeRead) c_g_unix_mount_for;
4852 	const(char)* function(GUnixMountEntry* mountEntry) c_g_unix_mount_get_options;
4853 	const(char)* function(GUnixMountEntry* mountEntry) c_g_unix_mount_get_root_path;
4854 
4855 	// gio.UnixMountMonitor
4856 
4857 	GType function() c_g_unix_mount_monitor_get_type;
4858 	GUnixMountMonitor* function() c_g_unix_mount_monitor_new;
4859 	GUnixMountMonitor* function() c_g_unix_mount_monitor_get;
4860 	void function(GUnixMountMonitor* mountMonitor, int limitMsec) c_g_unix_mount_monitor_set_rate_limit;
4861 
4862 	// gio.UnixMountPoint
4863 
4864 	GType function() c_g_unix_mount_point_get_type;
4865 	int function(GUnixMountPoint* mount1, GUnixMountPoint* mount2) c_g_unix_mount_point_compare;
4866 	GUnixMountPoint* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_copy;
4867 	void function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_free;
4868 	char* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_get_device_path;
4869 	const(char)* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_get_fs_type;
4870 	char* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_get_mount_path;
4871 	const(char)* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_get_options;
4872 	int function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_guess_can_eject;
4873 	GIcon* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_guess_icon;
4874 	char* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_guess_name;
4875 	GIcon* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_guess_symbolic_icon;
4876 	int function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_is_loopback;
4877 	int function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_is_readonly;
4878 	int function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_is_user_mountable;
4879 	GUnixMountPoint* function(char* mountPath, ulong* timeRead) c_g_unix_mount_point_at;
4880 
4881 	// gio.UnixOutputStream
4882 
4883 	GType function() c_g_unix_output_stream_get_type;
4884 	GOutputStream* function(int fd, int closeFd) c_g_unix_output_stream_new;
4885 	int function(GUnixOutputStream* stream) c_g_unix_output_stream_get_close_fd;
4886 	int function(GUnixOutputStream* stream) c_g_unix_output_stream_get_fd;
4887 	void function(GUnixOutputStream* stream, int closeFd) c_g_unix_output_stream_set_close_fd;
4888 
4889 	// gio.UnixSocketAddress
4890 
4891 	GType function() c_g_unix_socket_address_get_type;
4892 	GSocketAddress* function(const(char)* path) c_g_unix_socket_address_new;
4893 	GSocketAddress* function(char* path, int pathLen) c_g_unix_socket_address_new_abstract;
4894 	GSocketAddress* function(char* path, int pathLen, GUnixSocketAddressType type) c_g_unix_socket_address_new_with_type;
4895 	int function() c_g_unix_socket_address_abstract_names_supported;
4896 	GUnixSocketAddressType function(GUnixSocketAddress* address) c_g_unix_socket_address_get_address_type;
4897 	int function(GUnixSocketAddress* address) c_g_unix_socket_address_get_is_abstract;
4898 	const(char)* function(GUnixSocketAddress* address) c_g_unix_socket_address_get_path;
4899 	size_t function(GUnixSocketAddress* address) c_g_unix_socket_address_get_path_len;
4900 
4901 	// gio.Vfs
4902 
4903 	GType function() c_g_vfs_get_type;
4904 	GVfs* function() c_g_vfs_get_default;
4905 	GVfs* function() c_g_vfs_get_local;
4906 	GFile* function(GVfs* vfs, const(char)* path) c_g_vfs_get_file_for_path;
4907 	GFile* function(GVfs* vfs, const(char)* uri) c_g_vfs_get_file_for_uri;
4908 	char** function(GVfs* vfs) c_g_vfs_get_supported_uri_schemes;
4909 	int function(GVfs* vfs) c_g_vfs_is_active;
4910 	GFile* function(GVfs* vfs, const(char)* parseName) c_g_vfs_parse_name;
4911 	int function(GVfs* vfs, const(char)* scheme, GVfsFileLookupFunc uriFunc, void* uriData, GDestroyNotify uriDestroy, GVfsFileLookupFunc parseNameFunc, void* parseNameData, GDestroyNotify parseNameDestroy) c_g_vfs_register_uri_scheme;
4912 	int function(GVfs* vfs, const(char)* scheme) c_g_vfs_unregister_uri_scheme;
4913 
4914 	// gio.Volume
4915 
4916 	GType function() c_g_volume_get_type;
4917 	int function(GVolume* volume) c_g_volume_can_eject;
4918 	int function(GVolume* volume) c_g_volume_can_mount;
4919 	void function(GVolume* volume, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_volume_eject;
4920 	int function(GVolume* volume, GAsyncResult* result, GError** err) c_g_volume_eject_finish;
4921 	void function(GVolume* volume, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_volume_eject_with_operation;
4922 	int function(GVolume* volume, GAsyncResult* result, GError** err) c_g_volume_eject_with_operation_finish;
4923 	char** function(GVolume* volume) c_g_volume_enumerate_identifiers;
4924 	GFile* function(GVolume* volume) c_g_volume_get_activation_root;
4925 	GDrive* function(GVolume* volume) c_g_volume_get_drive;
4926 	GIcon* function(GVolume* volume) c_g_volume_get_icon;
4927 	char* function(GVolume* volume, const(char)* kind) c_g_volume_get_identifier;
4928 	GMount* function(GVolume* volume) c_g_volume_get_mount;
4929 	char* function(GVolume* volume) c_g_volume_get_name;
4930 	const(char)* function(GVolume* volume) c_g_volume_get_sort_key;
4931 	GIcon* function(GVolume* volume) c_g_volume_get_symbolic_icon;
4932 	char* function(GVolume* volume) c_g_volume_get_uuid;
4933 	void function(GVolume* volume, GMountMountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_volume_mount;
4934 	int function(GVolume* volume, GAsyncResult* result, GError** err) c_g_volume_mount_finish;
4935 	int function(GVolume* volume) c_g_volume_should_automount;
4936 
4937 	// gio.VolumeMonitor
4938 
4939 	GType function() c_g_volume_monitor_get_type;
4940 	GVolume* function(GMount* mount) c_g_volume_monitor_adopt_orphan_mount;
4941 	GVolumeMonitor* function() c_g_volume_monitor_get;
4942 	GList* function(GVolumeMonitor* volumeMonitor) c_g_volume_monitor_get_connected_drives;
4943 	GMount* function(GVolumeMonitor* volumeMonitor, const(char)* uuid) c_g_volume_monitor_get_mount_for_uuid;
4944 	GList* function(GVolumeMonitor* volumeMonitor) c_g_volume_monitor_get_mounts;
4945 	GVolume* function(GVolumeMonitor* volumeMonitor, const(char)* uuid) c_g_volume_monitor_get_volume_for_uuid;
4946 	GList* function(GVolumeMonitor* volumeMonitor) c_g_volume_monitor_get_volumes;
4947 
4948 	// gio.ZlibCompressor
4949 
4950 	GType function() c_g_zlib_compressor_get_type;
4951 	GZlibCompressor* function(GZlibCompressorFormat format, int level) c_g_zlib_compressor_new;
4952 	GFileInfo* function(GZlibCompressor* compressor) c_g_zlib_compressor_get_file_info;
4953 	void function(GZlibCompressor* compressor, GFileInfo* fileInfo) c_g_zlib_compressor_set_file_info;
4954 
4955 	// gio.ZlibDecompressor
4956 
4957 	GType function() c_g_zlib_decompressor_get_type;
4958 	GZlibDecompressor* function(GZlibCompressorFormat format) c_g_zlib_decompressor_new;
4959 	GFileInfo* function(GZlibDecompressor* decompressor) c_g_zlib_decompressor_get_file_info;
4960 
4961 	// gio.PollableUtils
4962 
4963 	GSource* function(GObject* pollableStream) c_g_pollable_source_new;
4964 	GSource* function(void* pollableStream, GSource* childSource, GCancellable* cancellable) c_g_pollable_source_new_full;
4965 	ptrdiff_t function(GInputStream* stream, void* buffer, size_t count, int blocking, GCancellable* cancellable, GError** err) c_g_pollable_stream_read;
4966 	ptrdiff_t function(GOutputStream* stream, void* buffer, size_t count, int blocking, GCancellable* cancellable, GError** err) c_g_pollable_stream_write;
4967 	int function(GOutputStream* stream, void* buffer, size_t count, int blocking, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_pollable_stream_write_all;
4968 
4969 	// gio.DBusNames
4970 
4971 	uint function(GBusType busType, const(char)* name, GBusNameOwnerFlags flags, GBusAcquiredCallback busAcquiredHandler, GBusNameAcquiredCallback nameAcquiredHandler, GBusNameLostCallback nameLostHandler, void* userData, GDestroyNotify userDataFreeFunc) c_g_bus_own_name;
4972 	uint function(GDBusConnection* connection, const(char)* name, GBusNameOwnerFlags flags, GBusNameAcquiredCallback nameAcquiredHandler, GBusNameLostCallback nameLostHandler, void* userData, GDestroyNotify userDataFreeFunc) c_g_bus_own_name_on_connection;
4973 	uint function(GDBusConnection* connection, const(char)* name, GBusNameOwnerFlags flags, GClosure* nameAcquiredClosure, GClosure* nameLostClosure) c_g_bus_own_name_on_connection_with_closures;
4974 	uint function(GBusType busType, const(char)* name, GBusNameOwnerFlags flags, GClosure* busAcquiredClosure, GClosure* nameAcquiredClosure, GClosure* nameLostClosure) c_g_bus_own_name_with_closures;
4975 	void function(uint ownerId) c_g_bus_unown_name;
4976 	void function(uint watcherId) c_g_bus_unwatch_name;
4977 	uint function(GBusType busType, const(char)* name, GBusNameWatcherFlags flags, GBusNameAppearedCallback nameAppearedHandler, GBusNameVanishedCallback nameVanishedHandler, void* userData, GDestroyNotify userDataFreeFunc) c_g_bus_watch_name;
4978 	uint function(GDBusConnection* connection, const(char)* name, GBusNameWatcherFlags flags, GBusNameAppearedCallback nameAppearedHandler, GBusNameVanishedCallback nameVanishedHandler, void* userData, GDestroyNotify userDataFreeFunc) c_g_bus_watch_name_on_connection;
4979 	uint function(GDBusConnection* connection, const(char)* name, GBusNameWatcherFlags flags, GClosure* nameAppearedClosure, GClosure* nameVanishedClosure) c_g_bus_watch_name_on_connection_with_closures;
4980 	uint function(GBusType busType, const(char)* name, GBusNameWatcherFlags flags, GClosure* nameAppearedClosure, GClosure* nameVanishedClosure) c_g_bus_watch_name_with_closures;
4981 
4982 	// gio.ContentType
4983 
4984 	int function(const(char)* type) c_g_content_type_can_be_executable;
4985 	int function(const(char)* type1, const(char)* type2) c_g_content_type_equals;
4986 	char* function(const(char)* mimeType) c_g_content_type_from_mime_type;
4987 	char* function(const(char)* type) c_g_content_type_get_description;
4988 	char* function(const(char)* type) c_g_content_type_get_generic_icon_name;
4989 	GIcon* function(const(char)* type) c_g_content_type_get_icon;
4990 	char* function(const(char)* type) c_g_content_type_get_mime_type;
4991 	GIcon* function(const(char)* type) c_g_content_type_get_symbolic_icon;
4992 	char* function(char* filename, char* data, size_t dataSize, int* resultUncertain) c_g_content_type_guess;
4993 	char** function(GFile* root) c_g_content_type_guess_for_tree;
4994 	int function(const(char)* type, const(char)* supertype) c_g_content_type_is_a;
4995 	int function(const(char)* type) c_g_content_type_is_unknown;
4996 	GList* function() c_g_content_types_get_registered;
4997 	int function(const(char)* type, const(char)* mimeType) c_g_content_type_is_mime_type;
4998 	char** function() c_g_content_type_get_mime_dirs;
4999 	void function(char** dirs) c_g_content_type_set_mime_dirs;
5000 
5001 	// gio.DBusError
5002 
5003 	char* function(GError* error) c_g_dbus_error_encode_gerror;
5004 	char* function(GError* error) c_g_dbus_error_get_remote_error;
5005 	int function(GError* error) c_g_dbus_error_is_remote_error;
5006 	GError* function(const(char)* dbusErrorName, const(char)* dbusErrorMessage) c_g_dbus_error_new_for_dbus_error;
5007 	GQuark function() c_g_dbus_error_quark;
5008 	int function(GQuark errorDomain, int errorCode, const(char)* dbusErrorName) c_g_dbus_error_register_error;
5009 	void function(const(char)* errorDomainQuarkName, size_t* quarkVolatile, GDBusErrorEntry* entries, uint numEntries) c_g_dbus_error_register_error_domain;
5010 	int function(GError* error) c_g_dbus_error_strip_remote_error;
5011 	int function(GQuark errorDomain, int errorCode, const(char)* dbusErrorName) c_g_dbus_error_unregister_error;
5012 
5013 	// gio.DBusUtilities
5014 
5015 	char* function(const(char)* string_) c_g_dbus_address_escape_value;
5016 	char* function(GBusType busType, GCancellable* cancellable, GError** err) c_g_dbus_address_get_for_bus_sync;
5017 	void function(const(char)* address, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_address_get_stream;
5018 	GIOStream* function(GAsyncResult* res, char** outGuid, GError** err) c_g_dbus_address_get_stream_finish;
5019 	GIOStream* function(const(char)* address, char** outGuid, GCancellable* cancellable, GError** err) c_g_dbus_address_get_stream_sync;
5020 	char* function() c_g_dbus_generate_guid;
5021 	GVariant* function(GValue* gvalue, GVariantType* type) c_g_dbus_gvalue_to_gvariant;
5022 	void function(GVariant* value, GValue* outGvalue) c_g_dbus_gvariant_to_gvalue;
5023 	int function(const(char)* string_) c_g_dbus_is_address;
5024 	int function(const(char)* string_) c_g_dbus_is_guid;
5025 	int function(const(char)* string_) c_g_dbus_is_interface_name;
5026 	int function(const(char)* string_) c_g_dbus_is_member_name;
5027 	int function(const(char)* string_) c_g_dbus_is_name;
5028 	int function(const(char)* string_, GError** err) c_g_dbus_is_supported_address;
5029 	int function(const(char)* string_) c_g_dbus_is_unique_name;
5030 
5031 	// gio.ErrorGIO
5032 
5033 	GIOErrorEnum function(int errNo) c_g_io_error_from_errno;
5034 	GQuark function() c_g_io_error_quark;
5035 }
5036 
5037 
5038 // gio.Action
5039 
5040 alias c_g_action_get_type g_action_get_type;
5041 alias c_g_action_name_is_valid g_action_name_is_valid;
5042 alias c_g_action_parse_detailed_name g_action_parse_detailed_name;
5043 alias c_g_action_print_detailed_name g_action_print_detailed_name;
5044 alias c_g_action_activate g_action_activate;
5045 alias c_g_action_change_state g_action_change_state;
5046 alias c_g_action_get_enabled g_action_get_enabled;
5047 alias c_g_action_get_name g_action_get_name;
5048 alias c_g_action_get_parameter_type g_action_get_parameter_type;
5049 alias c_g_action_get_state g_action_get_state;
5050 alias c_g_action_get_state_hint g_action_get_state_hint;
5051 alias c_g_action_get_state_type g_action_get_state_type;
5052 
5053 // gio.ActionGroup
5054 
5055 alias c_g_action_group_get_type g_action_group_get_type;
5056 alias c_g_action_group_action_added g_action_group_action_added;
5057 alias c_g_action_group_action_enabled_changed g_action_group_action_enabled_changed;
5058 alias c_g_action_group_action_removed g_action_group_action_removed;
5059 alias c_g_action_group_action_state_changed g_action_group_action_state_changed;
5060 alias c_g_action_group_activate_action g_action_group_activate_action;
5061 alias c_g_action_group_change_action_state g_action_group_change_action_state;
5062 alias c_g_action_group_get_action_enabled g_action_group_get_action_enabled;
5063 alias c_g_action_group_get_action_parameter_type g_action_group_get_action_parameter_type;
5064 alias c_g_action_group_get_action_state g_action_group_get_action_state;
5065 alias c_g_action_group_get_action_state_hint g_action_group_get_action_state_hint;
5066 alias c_g_action_group_get_action_state_type g_action_group_get_action_state_type;
5067 alias c_g_action_group_has_action g_action_group_has_action;
5068 alias c_g_action_group_list_actions g_action_group_list_actions;
5069 alias c_g_action_group_query_action g_action_group_query_action;
5070 
5071 // gio.ActionMap
5072 
5073 alias c_g_action_map_get_type g_action_map_get_type;
5074 alias c_g_action_map_add_action g_action_map_add_action;
5075 alias c_g_action_map_add_action_entries g_action_map_add_action_entries;
5076 alias c_g_action_map_lookup_action g_action_map_lookup_action;
5077 alias c_g_action_map_remove_action g_action_map_remove_action;
5078 
5079 // gio.AppInfo
5080 
5081 alias c_g_app_info_get_type g_app_info_get_type;
5082 alias c_g_app_info_create_from_commandline g_app_info_create_from_commandline;
5083 alias c_g_app_info_get_all g_app_info_get_all;
5084 alias c_g_app_info_get_all_for_type g_app_info_get_all_for_type;
5085 alias c_g_app_info_get_default_for_type g_app_info_get_default_for_type;
5086 alias c_g_app_info_get_default_for_uri_scheme g_app_info_get_default_for_uri_scheme;
5087 alias c_g_app_info_get_fallback_for_type g_app_info_get_fallback_for_type;
5088 alias c_g_app_info_get_recommended_for_type g_app_info_get_recommended_for_type;
5089 alias c_g_app_info_launch_default_for_uri g_app_info_launch_default_for_uri;
5090 alias c_g_app_info_launch_default_for_uri_async g_app_info_launch_default_for_uri_async;
5091 alias c_g_app_info_launch_default_for_uri_finish g_app_info_launch_default_for_uri_finish;
5092 alias c_g_app_info_reset_type_associations g_app_info_reset_type_associations;
5093 alias c_g_app_info_add_supports_type g_app_info_add_supports_type;
5094 alias c_g_app_info_can_delete g_app_info_can_delete;
5095 alias c_g_app_info_can_remove_supports_type g_app_info_can_remove_supports_type;
5096 alias c_g_app_info_delete g_app_info_delete;
5097 alias c_g_app_info_dup g_app_info_dup;
5098 alias c_g_app_info_equal g_app_info_equal;
5099 alias c_g_app_info_get_commandline g_app_info_get_commandline;
5100 alias c_g_app_info_get_description g_app_info_get_description;
5101 alias c_g_app_info_get_display_name g_app_info_get_display_name;
5102 alias c_g_app_info_get_executable g_app_info_get_executable;
5103 alias c_g_app_info_get_icon g_app_info_get_icon;
5104 alias c_g_app_info_get_id g_app_info_get_id;
5105 alias c_g_app_info_get_name g_app_info_get_name;
5106 alias c_g_app_info_get_supported_types g_app_info_get_supported_types;
5107 alias c_g_app_info_launch g_app_info_launch;
5108 alias c_g_app_info_launch_uris g_app_info_launch_uris;
5109 alias c_g_app_info_launch_uris_async g_app_info_launch_uris_async;
5110 alias c_g_app_info_launch_uris_finish g_app_info_launch_uris_finish;
5111 alias c_g_app_info_remove_supports_type g_app_info_remove_supports_type;
5112 alias c_g_app_info_set_as_default_for_extension g_app_info_set_as_default_for_extension;
5113 alias c_g_app_info_set_as_default_for_type g_app_info_set_as_default_for_type;
5114 alias c_g_app_info_set_as_last_used_for_type g_app_info_set_as_last_used_for_type;
5115 alias c_g_app_info_should_show g_app_info_should_show;
5116 alias c_g_app_info_supports_files g_app_info_supports_files;
5117 alias c_g_app_info_supports_uris g_app_info_supports_uris;
5118 
5119 // gio.AppInfoMonitor
5120 
5121 alias c_g_app_info_monitor_get_type g_app_info_monitor_get_type;
5122 alias c_g_app_info_monitor_get g_app_info_monitor_get;
5123 
5124 // gio.AppLaunchContext
5125 
5126 alias c_g_app_launch_context_get_type g_app_launch_context_get_type;
5127 alias c_g_app_launch_context_new g_app_launch_context_new;
5128 alias c_g_app_launch_context_get_display g_app_launch_context_get_display;
5129 alias c_g_app_launch_context_get_environment g_app_launch_context_get_environment;
5130 alias c_g_app_launch_context_get_startup_notify_id g_app_launch_context_get_startup_notify_id;
5131 alias c_g_app_launch_context_launch_failed g_app_launch_context_launch_failed;
5132 alias c_g_app_launch_context_setenv g_app_launch_context_setenv;
5133 alias c_g_app_launch_context_unsetenv g_app_launch_context_unsetenv;
5134 
5135 // gio.Application
5136 
5137 alias c_g_application_get_type g_application_get_type;
5138 alias c_g_application_new g_application_new;
5139 alias c_g_application_get_default g_application_get_default;
5140 alias c_g_application_id_is_valid g_application_id_is_valid;
5141 alias c_g_application_activate g_application_activate;
5142 alias c_g_application_add_main_option g_application_add_main_option;
5143 alias c_g_application_add_main_option_entries g_application_add_main_option_entries;
5144 alias c_g_application_add_option_group g_application_add_option_group;
5145 alias c_g_application_bind_busy_property g_application_bind_busy_property;
5146 alias c_g_application_get_application_id g_application_get_application_id;
5147 alias c_g_application_get_dbus_connection g_application_get_dbus_connection;
5148 alias c_g_application_get_dbus_object_path g_application_get_dbus_object_path;
5149 alias c_g_application_get_flags g_application_get_flags;
5150 alias c_g_application_get_inactivity_timeout g_application_get_inactivity_timeout;
5151 alias c_g_application_get_is_busy g_application_get_is_busy;
5152 alias c_g_application_get_is_registered g_application_get_is_registered;
5153 alias c_g_application_get_is_remote g_application_get_is_remote;
5154 alias c_g_application_get_resource_base_path g_application_get_resource_base_path;
5155 alias c_g_application_hold g_application_hold;
5156 alias c_g_application_mark_busy g_application_mark_busy;
5157 alias c_g_application_open g_application_open;
5158 alias c_g_application_quit g_application_quit;
5159 alias c_g_application_register g_application_register;
5160 alias c_g_application_release g_application_release;
5161 alias c_g_application_run g_application_run;
5162 alias c_g_application_send_notification g_application_send_notification;
5163 alias c_g_application_set_action_group g_application_set_action_group;
5164 alias c_g_application_set_application_id g_application_set_application_id;
5165 alias c_g_application_set_default g_application_set_default;
5166 alias c_g_application_set_flags g_application_set_flags;
5167 alias c_g_application_set_inactivity_timeout g_application_set_inactivity_timeout;
5168 alias c_g_application_set_option_context_description g_application_set_option_context_description;
5169 alias c_g_application_set_option_context_parameter_string g_application_set_option_context_parameter_string;
5170 alias c_g_application_set_option_context_summary g_application_set_option_context_summary;
5171 alias c_g_application_set_resource_base_path g_application_set_resource_base_path;
5172 alias c_g_application_unbind_busy_property g_application_unbind_busy_property;
5173 alias c_g_application_unmark_busy g_application_unmark_busy;
5174 alias c_g_application_withdraw_notification g_application_withdraw_notification;
5175 
5176 // gio.ApplicationCommandLine
5177 
5178 alias c_g_application_command_line_get_type g_application_command_line_get_type;
5179 alias c_g_application_command_line_create_file_for_arg g_application_command_line_create_file_for_arg;
5180 alias c_g_application_command_line_get_arguments g_application_command_line_get_arguments;
5181 alias c_g_application_command_line_get_cwd g_application_command_line_get_cwd;
5182 alias c_g_application_command_line_get_environ g_application_command_line_get_environ;
5183 alias c_g_application_command_line_get_exit_status g_application_command_line_get_exit_status;
5184 alias c_g_application_command_line_get_is_remote g_application_command_line_get_is_remote;
5185 alias c_g_application_command_line_get_options_dict g_application_command_line_get_options_dict;
5186 alias c_g_application_command_line_get_platform_data g_application_command_line_get_platform_data;
5187 alias c_g_application_command_line_get_stdin g_application_command_line_get_stdin;
5188 alias c_g_application_command_line_getenv g_application_command_line_getenv;
5189 alias c_g_application_command_line_print g_application_command_line_print;
5190 alias c_g_application_command_line_printerr g_application_command_line_printerr;
5191 alias c_g_application_command_line_set_exit_status g_application_command_line_set_exit_status;
5192 
5193 // gio.AsyncInitable
5194 
5195 alias c_g_async_initable_get_type g_async_initable_get_type;
5196 alias c_g_async_initable_new_async g_async_initable_new_async;
5197 alias c_g_async_initable_new_valist_async g_async_initable_new_valist_async;
5198 alias c_g_async_initable_newv_async g_async_initable_newv_async;
5199 alias c_g_async_initable_init_async g_async_initable_init_async;
5200 alias c_g_async_initable_init_finish g_async_initable_init_finish;
5201 alias c_g_async_initable_new_finish g_async_initable_new_finish;
5202 
5203 // gio.AsyncResult
5204 
5205 alias c_g_async_result_get_type g_async_result_get_type;
5206 alias c_g_async_result_get_source_object g_async_result_get_source_object;
5207 alias c_g_async_result_get_user_data g_async_result_get_user_data;
5208 alias c_g_async_result_is_tagged g_async_result_is_tagged;
5209 alias c_g_async_result_legacy_propagate_error g_async_result_legacy_propagate_error;
5210 
5211 // gio.BufferedInputStream
5212 
5213 alias c_g_buffered_input_stream_get_type g_buffered_input_stream_get_type;
5214 alias c_g_buffered_input_stream_new g_buffered_input_stream_new;
5215 alias c_g_buffered_input_stream_new_sized g_buffered_input_stream_new_sized;
5216 alias c_g_buffered_input_stream_fill g_buffered_input_stream_fill;
5217 alias c_g_buffered_input_stream_fill_async g_buffered_input_stream_fill_async;
5218 alias c_g_buffered_input_stream_fill_finish g_buffered_input_stream_fill_finish;
5219 alias c_g_buffered_input_stream_get_available g_buffered_input_stream_get_available;
5220 alias c_g_buffered_input_stream_get_buffer_size g_buffered_input_stream_get_buffer_size;
5221 alias c_g_buffered_input_stream_peek g_buffered_input_stream_peek;
5222 alias c_g_buffered_input_stream_peek_buffer g_buffered_input_stream_peek_buffer;
5223 alias c_g_buffered_input_stream_read_byte g_buffered_input_stream_read_byte;
5224 alias c_g_buffered_input_stream_set_buffer_size g_buffered_input_stream_set_buffer_size;
5225 
5226 // gio.BufferedOutputStream
5227 
5228 alias c_g_buffered_output_stream_get_type g_buffered_output_stream_get_type;
5229 alias c_g_buffered_output_stream_new g_buffered_output_stream_new;
5230 alias c_g_buffered_output_stream_new_sized g_buffered_output_stream_new_sized;
5231 alias c_g_buffered_output_stream_get_auto_grow g_buffered_output_stream_get_auto_grow;
5232 alias c_g_buffered_output_stream_get_buffer_size g_buffered_output_stream_get_buffer_size;
5233 alias c_g_buffered_output_stream_set_auto_grow g_buffered_output_stream_set_auto_grow;
5234 alias c_g_buffered_output_stream_set_buffer_size g_buffered_output_stream_set_buffer_size;
5235 
5236 // gio.BytesIcon
5237 
5238 alias c_g_bytes_icon_get_type g_bytes_icon_get_type;
5239 alias c_g_bytes_icon_new g_bytes_icon_new;
5240 alias c_g_bytes_icon_get_bytes g_bytes_icon_get_bytes;
5241 
5242 // gio.Cancellable
5243 
5244 alias c_g_cancellable_get_type g_cancellable_get_type;
5245 alias c_g_cancellable_new g_cancellable_new;
5246 alias c_g_cancellable_get_current g_cancellable_get_current;
5247 alias c_g_cancellable_cancel g_cancellable_cancel;
5248 alias c_g_cancellable_connect g_cancellable_connect;
5249 alias c_g_cancellable_disconnect g_cancellable_disconnect;
5250 alias c_g_cancellable_get_fd g_cancellable_get_fd;
5251 alias c_g_cancellable_is_cancelled g_cancellable_is_cancelled;
5252 alias c_g_cancellable_make_pollfd g_cancellable_make_pollfd;
5253 alias c_g_cancellable_pop_current g_cancellable_pop_current;
5254 alias c_g_cancellable_push_current g_cancellable_push_current;
5255 alias c_g_cancellable_release_fd g_cancellable_release_fd;
5256 alias c_g_cancellable_reset g_cancellable_reset;
5257 alias c_g_cancellable_set_error_if_cancelled g_cancellable_set_error_if_cancelled;
5258 alias c_g_cancellable_source_new g_cancellable_source_new;
5259 
5260 // gio.CharsetConverter
5261 
5262 alias c_g_charset_converter_get_type g_charset_converter_get_type;
5263 alias c_g_charset_converter_new g_charset_converter_new;
5264 alias c_g_charset_converter_get_num_fallbacks g_charset_converter_get_num_fallbacks;
5265 alias c_g_charset_converter_get_use_fallback g_charset_converter_get_use_fallback;
5266 alias c_g_charset_converter_set_use_fallback g_charset_converter_set_use_fallback;
5267 
5268 // gio.Converter
5269 
5270 alias c_g_converter_get_type g_converter_get_type;
5271 alias c_g_converter_convert g_converter_convert;
5272 alias c_g_converter_reset g_converter_reset;
5273 
5274 // gio.ConverterInputStream
5275 
5276 alias c_g_converter_input_stream_get_type g_converter_input_stream_get_type;
5277 alias c_g_converter_input_stream_new g_converter_input_stream_new;
5278 alias c_g_converter_input_stream_get_converter g_converter_input_stream_get_converter;
5279 
5280 // gio.ConverterOutputStream
5281 
5282 alias c_g_converter_output_stream_get_type g_converter_output_stream_get_type;
5283 alias c_g_converter_output_stream_new g_converter_output_stream_new;
5284 alias c_g_converter_output_stream_get_converter g_converter_output_stream_get_converter;
5285 
5286 // gio.Credentials
5287 
5288 alias c_g_credentials_get_type g_credentials_get_type;
5289 alias c_g_credentials_new g_credentials_new;
5290 alias c_g_credentials_get_native g_credentials_get_native;
5291 alias c_g_credentials_get_unix_pid g_credentials_get_unix_pid;
5292 alias c_g_credentials_get_unix_user g_credentials_get_unix_user;
5293 alias c_g_credentials_is_same_user g_credentials_is_same_user;
5294 alias c_g_credentials_set_native g_credentials_set_native;
5295 alias c_g_credentials_set_unix_user g_credentials_set_unix_user;
5296 alias c_g_credentials_to_string g_credentials_to_string;
5297 
5298 // gio.DBusActionGroup
5299 
5300 alias c_g_dbus_action_group_get_type g_dbus_action_group_get_type;
5301 alias c_g_dbus_action_group_get g_dbus_action_group_get;
5302 
5303 // gio.DBusAnnotationInfo
5304 
5305 alias c_g_dbus_annotation_info_get_type g_dbus_annotation_info_get_type;
5306 alias c_g_dbus_annotation_info_ref g_dbus_annotation_info_ref;
5307 alias c_g_dbus_annotation_info_unref g_dbus_annotation_info_unref;
5308 alias c_g_dbus_annotation_info_lookup g_dbus_annotation_info_lookup;
5309 
5310 // gio.DBusArgInfo
5311 
5312 alias c_g_dbus_arg_info_get_type g_dbus_arg_info_get_type;
5313 alias c_g_dbus_arg_info_ref g_dbus_arg_info_ref;
5314 alias c_g_dbus_arg_info_unref g_dbus_arg_info_unref;
5315 
5316 // gio.DBusAuthObserver
5317 
5318 alias c_g_dbus_auth_observer_get_type g_dbus_auth_observer_get_type;
5319 alias c_g_dbus_auth_observer_new g_dbus_auth_observer_new;
5320 alias c_g_dbus_auth_observer_allow_mechanism g_dbus_auth_observer_allow_mechanism;
5321 alias c_g_dbus_auth_observer_authorize_authenticated_peer g_dbus_auth_observer_authorize_authenticated_peer;
5322 
5323 // gio.DBusConnection
5324 
5325 alias c_g_dbus_connection_get_type g_dbus_connection_get_type;
5326 alias c_g_dbus_connection_new_finish g_dbus_connection_new_finish;
5327 alias c_g_dbus_connection_new_for_address_finish g_dbus_connection_new_for_address_finish;
5328 alias c_g_dbus_connection_new_for_address_sync g_dbus_connection_new_for_address_sync;
5329 alias c_g_dbus_connection_new_sync g_dbus_connection_new_sync;
5330 alias c_g_dbus_connection_new g_dbus_connection_new;
5331 alias c_g_dbus_connection_new_for_address g_dbus_connection_new_for_address;
5332 alias c_g_dbus_connection_add_filter g_dbus_connection_add_filter;
5333 alias c_g_dbus_connection_call g_dbus_connection_call;
5334 alias c_g_dbus_connection_call_finish g_dbus_connection_call_finish;
5335 alias c_g_dbus_connection_call_sync g_dbus_connection_call_sync;
5336 alias c_g_dbus_connection_call_with_unix_fd_list g_dbus_connection_call_with_unix_fd_list;
5337 alias c_g_dbus_connection_call_with_unix_fd_list_finish g_dbus_connection_call_with_unix_fd_list_finish;
5338 alias c_g_dbus_connection_call_with_unix_fd_list_sync g_dbus_connection_call_with_unix_fd_list_sync;
5339 alias c_g_dbus_connection_close g_dbus_connection_close;
5340 alias c_g_dbus_connection_close_finish g_dbus_connection_close_finish;
5341 alias c_g_dbus_connection_close_sync g_dbus_connection_close_sync;
5342 alias c_g_dbus_connection_emit_signal g_dbus_connection_emit_signal;
5343 alias c_g_dbus_connection_export_action_group g_dbus_connection_export_action_group;
5344 alias c_g_dbus_connection_export_menu_model g_dbus_connection_export_menu_model;
5345 alias c_g_dbus_connection_flush g_dbus_connection_flush;
5346 alias c_g_dbus_connection_flush_finish g_dbus_connection_flush_finish;
5347 alias c_g_dbus_connection_flush_sync g_dbus_connection_flush_sync;
5348 alias c_g_dbus_connection_get_capabilities g_dbus_connection_get_capabilities;
5349 alias c_g_dbus_connection_get_exit_on_close g_dbus_connection_get_exit_on_close;
5350 alias c_g_dbus_connection_get_flags g_dbus_connection_get_flags;
5351 alias c_g_dbus_connection_get_guid g_dbus_connection_get_guid;
5352 alias c_g_dbus_connection_get_last_serial g_dbus_connection_get_last_serial;
5353 alias c_g_dbus_connection_get_peer_credentials g_dbus_connection_get_peer_credentials;
5354 alias c_g_dbus_connection_get_stream g_dbus_connection_get_stream;
5355 alias c_g_dbus_connection_get_unique_name g_dbus_connection_get_unique_name;
5356 alias c_g_dbus_connection_is_closed g_dbus_connection_is_closed;
5357 alias c_g_dbus_connection_register_object g_dbus_connection_register_object;
5358 alias c_g_dbus_connection_register_object_with_closures g_dbus_connection_register_object_with_closures;
5359 alias c_g_dbus_connection_register_subtree g_dbus_connection_register_subtree;
5360 alias c_g_dbus_connection_remove_filter g_dbus_connection_remove_filter;
5361 alias c_g_dbus_connection_send_message g_dbus_connection_send_message;
5362 alias c_g_dbus_connection_send_message_with_reply g_dbus_connection_send_message_with_reply;
5363 alias c_g_dbus_connection_send_message_with_reply_finish g_dbus_connection_send_message_with_reply_finish;
5364 alias c_g_dbus_connection_send_message_with_reply_sync g_dbus_connection_send_message_with_reply_sync;
5365 alias c_g_dbus_connection_set_exit_on_close g_dbus_connection_set_exit_on_close;
5366 alias c_g_dbus_connection_signal_subscribe g_dbus_connection_signal_subscribe;
5367 alias c_g_dbus_connection_signal_unsubscribe g_dbus_connection_signal_unsubscribe;
5368 alias c_g_dbus_connection_start_message_processing g_dbus_connection_start_message_processing;
5369 alias c_g_dbus_connection_unexport_action_group g_dbus_connection_unexport_action_group;
5370 alias c_g_dbus_connection_unexport_menu_model g_dbus_connection_unexport_menu_model;
5371 alias c_g_dbus_connection_unregister_object g_dbus_connection_unregister_object;
5372 alias c_g_dbus_connection_unregister_subtree g_dbus_connection_unregister_subtree;
5373 alias c_g_bus_get g_bus_get;
5374 alias c_g_bus_get_finish g_bus_get_finish;
5375 alias c_g_bus_get_sync g_bus_get_sync;
5376 
5377 // gio.DBusInterface
5378 
5379 alias c_g_dbus_interface_get_type g_dbus_interface_get_type;
5380 alias c_g_dbus_interface_dup_object g_dbus_interface_dup_object;
5381 alias c_g_dbus_interface_get_info g_dbus_interface_get_info;
5382 alias c_g_dbus_interface_get_object g_dbus_interface_get_object;
5383 alias c_g_dbus_interface_set_object g_dbus_interface_set_object;
5384 
5385 // gio.DBusInterfaceInfo
5386 
5387 alias c_g_dbus_interface_info_get_type g_dbus_interface_info_get_type;
5388 alias c_g_dbus_interface_info_cache_build g_dbus_interface_info_cache_build;
5389 alias c_g_dbus_interface_info_cache_release g_dbus_interface_info_cache_release;
5390 alias c_g_dbus_interface_info_generate_xml g_dbus_interface_info_generate_xml;
5391 alias c_g_dbus_interface_info_lookup_method g_dbus_interface_info_lookup_method;
5392 alias c_g_dbus_interface_info_lookup_property g_dbus_interface_info_lookup_property;
5393 alias c_g_dbus_interface_info_lookup_signal g_dbus_interface_info_lookup_signal;
5394 alias c_g_dbus_interface_info_ref g_dbus_interface_info_ref;
5395 alias c_g_dbus_interface_info_unref g_dbus_interface_info_unref;
5396 
5397 // gio.DBusInterfaceSkeleton
5398 
5399 alias c_g_dbus_interface_skeleton_get_type g_dbus_interface_skeleton_get_type;
5400 alias c_g_dbus_interface_skeleton_export g_dbus_interface_skeleton_export;
5401 alias c_g_dbus_interface_skeleton_flush g_dbus_interface_skeleton_flush;
5402 alias c_g_dbus_interface_skeleton_get_connection g_dbus_interface_skeleton_get_connection;
5403 alias c_g_dbus_interface_skeleton_get_connections g_dbus_interface_skeleton_get_connections;
5404 alias c_g_dbus_interface_skeleton_get_flags g_dbus_interface_skeleton_get_flags;
5405 alias c_g_dbus_interface_skeleton_get_info g_dbus_interface_skeleton_get_info;
5406 alias c_g_dbus_interface_skeleton_get_object_path g_dbus_interface_skeleton_get_object_path;
5407 alias c_g_dbus_interface_skeleton_get_properties g_dbus_interface_skeleton_get_properties;
5408 alias c_g_dbus_interface_skeleton_get_vtable g_dbus_interface_skeleton_get_vtable;
5409 alias c_g_dbus_interface_skeleton_has_connection g_dbus_interface_skeleton_has_connection;
5410 alias c_g_dbus_interface_skeleton_set_flags g_dbus_interface_skeleton_set_flags;
5411 alias c_g_dbus_interface_skeleton_unexport g_dbus_interface_skeleton_unexport;
5412 alias c_g_dbus_interface_skeleton_unexport_from_connection g_dbus_interface_skeleton_unexport_from_connection;
5413 
5414 // gio.DBusMenuModel
5415 
5416 alias c_g_dbus_menu_model_get_type g_dbus_menu_model_get_type;
5417 alias c_g_dbus_menu_model_get g_dbus_menu_model_get;
5418 
5419 // gio.DBusMessage
5420 
5421 alias c_g_dbus_message_get_type g_dbus_message_get_type;
5422 alias c_g_dbus_message_new g_dbus_message_new;
5423 alias c_g_dbus_message_new_from_blob g_dbus_message_new_from_blob;
5424 alias c_g_dbus_message_new_method_call g_dbus_message_new_method_call;
5425 alias c_g_dbus_message_new_signal g_dbus_message_new_signal;
5426 alias c_g_dbus_message_bytes_needed g_dbus_message_bytes_needed;
5427 alias c_g_dbus_message_copy g_dbus_message_copy;
5428 alias c_g_dbus_message_get_arg0 g_dbus_message_get_arg0;
5429 alias c_g_dbus_message_get_body g_dbus_message_get_body;
5430 alias c_g_dbus_message_get_byte_order g_dbus_message_get_byte_order;
5431 alias c_g_dbus_message_get_destination g_dbus_message_get_destination;
5432 alias c_g_dbus_message_get_error_name g_dbus_message_get_error_name;
5433 alias c_g_dbus_message_get_flags g_dbus_message_get_flags;
5434 alias c_g_dbus_message_get_header g_dbus_message_get_header;
5435 alias c_g_dbus_message_get_header_fields g_dbus_message_get_header_fields;
5436 alias c_g_dbus_message_get_interface g_dbus_message_get_interface;
5437 alias c_g_dbus_message_get_locked g_dbus_message_get_locked;
5438 alias c_g_dbus_message_get_member g_dbus_message_get_member;
5439 alias c_g_dbus_message_get_message_type g_dbus_message_get_message_type;
5440 alias c_g_dbus_message_get_num_unix_fds g_dbus_message_get_num_unix_fds;
5441 alias c_g_dbus_message_get_path g_dbus_message_get_path;
5442 alias c_g_dbus_message_get_reply_serial g_dbus_message_get_reply_serial;
5443 alias c_g_dbus_message_get_sender g_dbus_message_get_sender;
5444 alias c_g_dbus_message_get_serial g_dbus_message_get_serial;
5445 alias c_g_dbus_message_get_signature g_dbus_message_get_signature;
5446 alias c_g_dbus_message_get_unix_fd_list g_dbus_message_get_unix_fd_list;
5447 alias c_g_dbus_message_lock g_dbus_message_lock;
5448 alias c_g_dbus_message_new_method_error g_dbus_message_new_method_error;
5449 alias c_g_dbus_message_new_method_error_literal g_dbus_message_new_method_error_literal;
5450 alias c_g_dbus_message_new_method_error_valist g_dbus_message_new_method_error_valist;
5451 alias c_g_dbus_message_new_method_reply g_dbus_message_new_method_reply;
5452 alias c_g_dbus_message_print g_dbus_message_print;
5453 alias c_g_dbus_message_set_body g_dbus_message_set_body;
5454 alias c_g_dbus_message_set_byte_order g_dbus_message_set_byte_order;
5455 alias c_g_dbus_message_set_destination g_dbus_message_set_destination;
5456 alias c_g_dbus_message_set_error_name g_dbus_message_set_error_name;
5457 alias c_g_dbus_message_set_flags g_dbus_message_set_flags;
5458 alias c_g_dbus_message_set_header g_dbus_message_set_header;
5459 alias c_g_dbus_message_set_interface g_dbus_message_set_interface;
5460 alias c_g_dbus_message_set_member g_dbus_message_set_member;
5461 alias c_g_dbus_message_set_message_type g_dbus_message_set_message_type;
5462 alias c_g_dbus_message_set_num_unix_fds g_dbus_message_set_num_unix_fds;
5463 alias c_g_dbus_message_set_path g_dbus_message_set_path;
5464 alias c_g_dbus_message_set_reply_serial g_dbus_message_set_reply_serial;
5465 alias c_g_dbus_message_set_sender g_dbus_message_set_sender;
5466 alias c_g_dbus_message_set_serial g_dbus_message_set_serial;
5467 alias c_g_dbus_message_set_signature g_dbus_message_set_signature;
5468 alias c_g_dbus_message_set_unix_fd_list g_dbus_message_set_unix_fd_list;
5469 alias c_g_dbus_message_to_blob g_dbus_message_to_blob;
5470 alias c_g_dbus_message_to_gerror g_dbus_message_to_gerror;
5471 
5472 // gio.DBusMethodInfo
5473 
5474 alias c_g_dbus_method_info_get_type g_dbus_method_info_get_type;
5475 alias c_g_dbus_method_info_ref g_dbus_method_info_ref;
5476 alias c_g_dbus_method_info_unref g_dbus_method_info_unref;
5477 
5478 // gio.DBusMethodInvocation
5479 
5480 alias c_g_dbus_method_invocation_get_type g_dbus_method_invocation_get_type;
5481 alias c_g_dbus_method_invocation_get_connection g_dbus_method_invocation_get_connection;
5482 alias c_g_dbus_method_invocation_get_interface_name g_dbus_method_invocation_get_interface_name;
5483 alias c_g_dbus_method_invocation_get_message g_dbus_method_invocation_get_message;
5484 alias c_g_dbus_method_invocation_get_method_info g_dbus_method_invocation_get_method_info;
5485 alias c_g_dbus_method_invocation_get_method_name g_dbus_method_invocation_get_method_name;
5486 alias c_g_dbus_method_invocation_get_object_path g_dbus_method_invocation_get_object_path;
5487 alias c_g_dbus_method_invocation_get_parameters g_dbus_method_invocation_get_parameters;
5488 alias c_g_dbus_method_invocation_get_property_info g_dbus_method_invocation_get_property_info;
5489 alias c_g_dbus_method_invocation_get_sender g_dbus_method_invocation_get_sender;
5490 alias c_g_dbus_method_invocation_get_user_data g_dbus_method_invocation_get_user_data;
5491 alias c_g_dbus_method_invocation_return_dbus_error g_dbus_method_invocation_return_dbus_error;
5492 alias c_g_dbus_method_invocation_return_error g_dbus_method_invocation_return_error;
5493 alias c_g_dbus_method_invocation_return_error_literal g_dbus_method_invocation_return_error_literal;
5494 alias c_g_dbus_method_invocation_return_error_valist g_dbus_method_invocation_return_error_valist;
5495 alias c_g_dbus_method_invocation_return_gerror g_dbus_method_invocation_return_gerror;
5496 alias c_g_dbus_method_invocation_return_value g_dbus_method_invocation_return_value;
5497 alias c_g_dbus_method_invocation_return_value_with_unix_fd_list g_dbus_method_invocation_return_value_with_unix_fd_list;
5498 alias c_g_dbus_method_invocation_take_error g_dbus_method_invocation_take_error;
5499 
5500 // gio.DBusNodeInfo
5501 
5502 alias c_g_dbus_node_info_get_type g_dbus_node_info_get_type;
5503 alias c_g_dbus_node_info_new_for_xml g_dbus_node_info_new_for_xml;
5504 alias c_g_dbus_node_info_generate_xml g_dbus_node_info_generate_xml;
5505 alias c_g_dbus_node_info_lookup_interface g_dbus_node_info_lookup_interface;
5506 alias c_g_dbus_node_info_ref g_dbus_node_info_ref;
5507 alias c_g_dbus_node_info_unref g_dbus_node_info_unref;
5508 
5509 // gio.DBusObject
5510 
5511 alias c_g_dbus_object_get_type g_dbus_object_get_type;
5512 alias c_g_dbus_object_get_interface g_dbus_object_get_interface;
5513 alias c_g_dbus_object_get_interfaces g_dbus_object_get_interfaces;
5514 alias c_g_dbus_object_get_object_path g_dbus_object_get_object_path;
5515 
5516 // gio.DBusObjectManager
5517 
5518 alias c_g_dbus_object_manager_get_type g_dbus_object_manager_get_type;
5519 alias c_g_dbus_object_manager_get_interface g_dbus_object_manager_get_interface;
5520 alias c_g_dbus_object_manager_get_object g_dbus_object_manager_get_object;
5521 alias c_g_dbus_object_manager_get_object_path g_dbus_object_manager_get_object_path;
5522 alias c_g_dbus_object_manager_get_objects g_dbus_object_manager_get_objects;
5523 
5524 // gio.DBusObjectManagerClient
5525 
5526 alias c_g_dbus_object_manager_client_get_type g_dbus_object_manager_client_get_type;
5527 alias c_g_dbus_object_manager_client_new_finish g_dbus_object_manager_client_new_finish;
5528 alias c_g_dbus_object_manager_client_new_for_bus_finish g_dbus_object_manager_client_new_for_bus_finish;
5529 alias c_g_dbus_object_manager_client_new_for_bus_sync g_dbus_object_manager_client_new_for_bus_sync;
5530 alias c_g_dbus_object_manager_client_new_sync g_dbus_object_manager_client_new_sync;
5531 alias c_g_dbus_object_manager_client_new g_dbus_object_manager_client_new;
5532 alias c_g_dbus_object_manager_client_new_for_bus g_dbus_object_manager_client_new_for_bus;
5533 alias c_g_dbus_object_manager_client_get_connection g_dbus_object_manager_client_get_connection;
5534 alias c_g_dbus_object_manager_client_get_flags g_dbus_object_manager_client_get_flags;
5535 alias c_g_dbus_object_manager_client_get_name g_dbus_object_manager_client_get_name;
5536 alias c_g_dbus_object_manager_client_get_name_owner g_dbus_object_manager_client_get_name_owner;
5537 
5538 // gio.DBusObjectManagerServer
5539 
5540 alias c_g_dbus_object_manager_server_get_type g_dbus_object_manager_server_get_type;
5541 alias c_g_dbus_object_manager_server_new g_dbus_object_manager_server_new;
5542 alias c_g_dbus_object_manager_server_export g_dbus_object_manager_server_export;
5543 alias c_g_dbus_object_manager_server_export_uniquely g_dbus_object_manager_server_export_uniquely;
5544 alias c_g_dbus_object_manager_server_get_connection g_dbus_object_manager_server_get_connection;
5545 alias c_g_dbus_object_manager_server_is_exported g_dbus_object_manager_server_is_exported;
5546 alias c_g_dbus_object_manager_server_set_connection g_dbus_object_manager_server_set_connection;
5547 alias c_g_dbus_object_manager_server_unexport g_dbus_object_manager_server_unexport;
5548 
5549 // gio.DBusObjectProxy
5550 
5551 alias c_g_dbus_object_proxy_get_type g_dbus_object_proxy_get_type;
5552 alias c_g_dbus_object_proxy_new g_dbus_object_proxy_new;
5553 alias c_g_dbus_object_proxy_get_connection g_dbus_object_proxy_get_connection;
5554 
5555 // gio.DBusObjectSkeleton
5556 
5557 alias c_g_dbus_object_skeleton_get_type g_dbus_object_skeleton_get_type;
5558 alias c_g_dbus_object_skeleton_new g_dbus_object_skeleton_new;
5559 alias c_g_dbus_object_skeleton_add_interface g_dbus_object_skeleton_add_interface;
5560 alias c_g_dbus_object_skeleton_flush g_dbus_object_skeleton_flush;
5561 alias c_g_dbus_object_skeleton_remove_interface g_dbus_object_skeleton_remove_interface;
5562 alias c_g_dbus_object_skeleton_remove_interface_by_name g_dbus_object_skeleton_remove_interface_by_name;
5563 alias c_g_dbus_object_skeleton_set_object_path g_dbus_object_skeleton_set_object_path;
5564 
5565 // gio.DBusPropertyInfo
5566 
5567 alias c_g_dbus_property_info_get_type g_dbus_property_info_get_type;
5568 alias c_g_dbus_property_info_ref g_dbus_property_info_ref;
5569 alias c_g_dbus_property_info_unref g_dbus_property_info_unref;
5570 
5571 // gio.DBusProxy
5572 
5573 alias c_g_dbus_proxy_get_type g_dbus_proxy_get_type;
5574 alias c_g_dbus_proxy_new_finish g_dbus_proxy_new_finish;
5575 alias c_g_dbus_proxy_new_for_bus_finish g_dbus_proxy_new_for_bus_finish;
5576 alias c_g_dbus_proxy_new_for_bus_sync g_dbus_proxy_new_for_bus_sync;
5577 alias c_g_dbus_proxy_new_sync g_dbus_proxy_new_sync;
5578 alias c_g_dbus_proxy_new g_dbus_proxy_new;
5579 alias c_g_dbus_proxy_new_for_bus g_dbus_proxy_new_for_bus;
5580 alias c_g_dbus_proxy_call g_dbus_proxy_call;
5581 alias c_g_dbus_proxy_call_finish g_dbus_proxy_call_finish;
5582 alias c_g_dbus_proxy_call_sync g_dbus_proxy_call_sync;
5583 alias c_g_dbus_proxy_call_with_unix_fd_list g_dbus_proxy_call_with_unix_fd_list;
5584 alias c_g_dbus_proxy_call_with_unix_fd_list_finish g_dbus_proxy_call_with_unix_fd_list_finish;
5585 alias c_g_dbus_proxy_call_with_unix_fd_list_sync g_dbus_proxy_call_with_unix_fd_list_sync;
5586 alias c_g_dbus_proxy_get_cached_property g_dbus_proxy_get_cached_property;
5587 alias c_g_dbus_proxy_get_cached_property_names g_dbus_proxy_get_cached_property_names;
5588 alias c_g_dbus_proxy_get_connection g_dbus_proxy_get_connection;
5589 alias c_g_dbus_proxy_get_default_timeout g_dbus_proxy_get_default_timeout;
5590 alias c_g_dbus_proxy_get_flags g_dbus_proxy_get_flags;
5591 alias c_g_dbus_proxy_get_interface_info g_dbus_proxy_get_interface_info;
5592 alias c_g_dbus_proxy_get_interface_name g_dbus_proxy_get_interface_name;
5593 alias c_g_dbus_proxy_get_name g_dbus_proxy_get_name;
5594 alias c_g_dbus_proxy_get_name_owner g_dbus_proxy_get_name_owner;
5595 alias c_g_dbus_proxy_get_object_path g_dbus_proxy_get_object_path;
5596 alias c_g_dbus_proxy_set_cached_property g_dbus_proxy_set_cached_property;
5597 alias c_g_dbus_proxy_set_default_timeout g_dbus_proxy_set_default_timeout;
5598 alias c_g_dbus_proxy_set_interface_info g_dbus_proxy_set_interface_info;
5599 
5600 // gio.DBusServer
5601 
5602 alias c_g_dbus_server_get_type g_dbus_server_get_type;
5603 alias c_g_dbus_server_new_sync g_dbus_server_new_sync;
5604 alias c_g_dbus_server_get_client_address g_dbus_server_get_client_address;
5605 alias c_g_dbus_server_get_flags g_dbus_server_get_flags;
5606 alias c_g_dbus_server_get_guid g_dbus_server_get_guid;
5607 alias c_g_dbus_server_is_active g_dbus_server_is_active;
5608 alias c_g_dbus_server_start g_dbus_server_start;
5609 alias c_g_dbus_server_stop g_dbus_server_stop;
5610 
5611 // gio.DBusSignalInfo
5612 
5613 alias c_g_dbus_signal_info_get_type g_dbus_signal_info_get_type;
5614 alias c_g_dbus_signal_info_ref g_dbus_signal_info_ref;
5615 alias c_g_dbus_signal_info_unref g_dbus_signal_info_unref;
5616 
5617 // gio.DataInputStream
5618 
5619 alias c_g_data_input_stream_get_type g_data_input_stream_get_type;
5620 alias c_g_data_input_stream_new g_data_input_stream_new;
5621 alias c_g_data_input_stream_get_byte_order g_data_input_stream_get_byte_order;
5622 alias c_g_data_input_stream_get_newline_type g_data_input_stream_get_newline_type;
5623 alias c_g_data_input_stream_read_byte g_data_input_stream_read_byte;
5624 alias c_g_data_input_stream_read_int16 g_data_input_stream_read_int16;
5625 alias c_g_data_input_stream_read_int32 g_data_input_stream_read_int32;
5626 alias c_g_data_input_stream_read_int64 g_data_input_stream_read_int64;
5627 alias c_g_data_input_stream_read_line g_data_input_stream_read_line;
5628 alias c_g_data_input_stream_read_line_async g_data_input_stream_read_line_async;
5629 alias c_g_data_input_stream_read_line_finish g_data_input_stream_read_line_finish;
5630 alias c_g_data_input_stream_read_line_finish_utf8 g_data_input_stream_read_line_finish_utf8;
5631 alias c_g_data_input_stream_read_line_utf8 g_data_input_stream_read_line_utf8;
5632 alias c_g_data_input_stream_read_uint16 g_data_input_stream_read_uint16;
5633 alias c_g_data_input_stream_read_uint32 g_data_input_stream_read_uint32;
5634 alias c_g_data_input_stream_read_uint64 g_data_input_stream_read_uint64;
5635 alias c_g_data_input_stream_read_until g_data_input_stream_read_until;
5636 alias c_g_data_input_stream_read_until_async g_data_input_stream_read_until_async;
5637 alias c_g_data_input_stream_read_until_finish g_data_input_stream_read_until_finish;
5638 alias c_g_data_input_stream_read_upto g_data_input_stream_read_upto;
5639 alias c_g_data_input_stream_read_upto_async g_data_input_stream_read_upto_async;
5640 alias c_g_data_input_stream_read_upto_finish g_data_input_stream_read_upto_finish;
5641 alias c_g_data_input_stream_set_byte_order g_data_input_stream_set_byte_order;
5642 alias c_g_data_input_stream_set_newline_type g_data_input_stream_set_newline_type;
5643 
5644 // gio.DataOutputStream
5645 
5646 alias c_g_data_output_stream_get_type g_data_output_stream_get_type;
5647 alias c_g_data_output_stream_new g_data_output_stream_new;
5648 alias c_g_data_output_stream_get_byte_order g_data_output_stream_get_byte_order;
5649 alias c_g_data_output_stream_put_byte g_data_output_stream_put_byte;
5650 alias c_g_data_output_stream_put_int16 g_data_output_stream_put_int16;
5651 alias c_g_data_output_stream_put_int32 g_data_output_stream_put_int32;
5652 alias c_g_data_output_stream_put_int64 g_data_output_stream_put_int64;
5653 alias c_g_data_output_stream_put_string g_data_output_stream_put_string;
5654 alias c_g_data_output_stream_put_uint16 g_data_output_stream_put_uint16;
5655 alias c_g_data_output_stream_put_uint32 g_data_output_stream_put_uint32;
5656 alias c_g_data_output_stream_put_uint64 g_data_output_stream_put_uint64;
5657 alias c_g_data_output_stream_set_byte_order g_data_output_stream_set_byte_order;
5658 
5659 // gio.DatagramBased
5660 
5661 alias c_g_datagram_based_get_type g_datagram_based_get_type;
5662 alias c_g_datagram_based_condition_check g_datagram_based_condition_check;
5663 alias c_g_datagram_based_condition_wait g_datagram_based_condition_wait;
5664 alias c_g_datagram_based_create_source g_datagram_based_create_source;
5665 alias c_g_datagram_based_receive_messages g_datagram_based_receive_messages;
5666 alias c_g_datagram_based_send_messages g_datagram_based_send_messages;
5667 
5668 // gio.DebugController
5669 
5670 alias c_g_debug_controller_get_type g_debug_controller_get_type;
5671 alias c_g_debug_controller_get_debug_enabled g_debug_controller_get_debug_enabled;
5672 alias c_g_debug_controller_set_debug_enabled g_debug_controller_set_debug_enabled;
5673 
5674 // gio.DebugControllerDBus
5675 
5676 alias c_g_debug_controller_dbus_get_type g_debug_controller_dbus_get_type;
5677 alias c_g_debug_controller_dbus_new g_debug_controller_dbus_new;
5678 alias c_g_debug_controller_dbus_stop g_debug_controller_dbus_stop;
5679 
5680 // gio.DesktopAppInfo
5681 
5682 alias c_g_desktop_app_info_get_type g_desktop_app_info_get_type;
5683 alias c_g_desktop_app_info_new g_desktop_app_info_new;
5684 alias c_g_desktop_app_info_new_from_filename g_desktop_app_info_new_from_filename;
5685 alias c_g_desktop_app_info_new_from_keyfile g_desktop_app_info_new_from_keyfile;
5686 alias c_g_desktop_app_info_get_implementations g_desktop_app_info_get_implementations;
5687 alias c_g_desktop_app_info_search g_desktop_app_info_search;
5688 alias c_g_desktop_app_info_set_desktop_env g_desktop_app_info_set_desktop_env;
5689 alias c_g_desktop_app_info_get_action_name g_desktop_app_info_get_action_name;
5690 alias c_g_desktop_app_info_get_boolean g_desktop_app_info_get_boolean;
5691 alias c_g_desktop_app_info_get_categories g_desktop_app_info_get_categories;
5692 alias c_g_desktop_app_info_get_filename g_desktop_app_info_get_filename;
5693 alias c_g_desktop_app_info_get_generic_name g_desktop_app_info_get_generic_name;
5694 alias c_g_desktop_app_info_get_is_hidden g_desktop_app_info_get_is_hidden;
5695 alias c_g_desktop_app_info_get_keywords g_desktop_app_info_get_keywords;
5696 alias c_g_desktop_app_info_get_locale_string g_desktop_app_info_get_locale_string;
5697 alias c_g_desktop_app_info_get_nodisplay g_desktop_app_info_get_nodisplay;
5698 alias c_g_desktop_app_info_get_show_in g_desktop_app_info_get_show_in;
5699 alias c_g_desktop_app_info_get_startup_wm_class g_desktop_app_info_get_startup_wm_class;
5700 alias c_g_desktop_app_info_get_string g_desktop_app_info_get_string;
5701 alias c_g_desktop_app_info_get_string_list g_desktop_app_info_get_string_list;
5702 alias c_g_desktop_app_info_has_key g_desktop_app_info_has_key;
5703 alias c_g_desktop_app_info_launch_action g_desktop_app_info_launch_action;
5704 alias c_g_desktop_app_info_launch_uris_as_manager g_desktop_app_info_launch_uris_as_manager;
5705 alias c_g_desktop_app_info_launch_uris_as_manager_with_fds g_desktop_app_info_launch_uris_as_manager_with_fds;
5706 alias c_g_desktop_app_info_list_actions g_desktop_app_info_list_actions;
5707 
5708 // gio.DesktopAppInfoLookup
5709 
5710 alias c_g_desktop_app_info_lookup_get_type g_desktop_app_info_lookup_get_type;
5711 alias c_g_desktop_app_info_lookup_get_default_for_uri_scheme g_desktop_app_info_lookup_get_default_for_uri_scheme;
5712 
5713 // gio.Drive
5714 
5715 alias c_g_drive_get_type g_drive_get_type;
5716 alias c_g_drive_can_eject g_drive_can_eject;
5717 alias c_g_drive_can_poll_for_media g_drive_can_poll_for_media;
5718 alias c_g_drive_can_start g_drive_can_start;
5719 alias c_g_drive_can_start_degraded g_drive_can_start_degraded;
5720 alias c_g_drive_can_stop g_drive_can_stop;
5721 alias c_g_drive_eject g_drive_eject;
5722 alias c_g_drive_eject_finish g_drive_eject_finish;
5723 alias c_g_drive_eject_with_operation g_drive_eject_with_operation;
5724 alias c_g_drive_eject_with_operation_finish g_drive_eject_with_operation_finish;
5725 alias c_g_drive_enumerate_identifiers g_drive_enumerate_identifiers;
5726 alias c_g_drive_get_icon g_drive_get_icon;
5727 alias c_g_drive_get_identifier g_drive_get_identifier;
5728 alias c_g_drive_get_name g_drive_get_name;
5729 alias c_g_drive_get_sort_key g_drive_get_sort_key;
5730 alias c_g_drive_get_start_stop_type g_drive_get_start_stop_type;
5731 alias c_g_drive_get_symbolic_icon g_drive_get_symbolic_icon;
5732 alias c_g_drive_get_volumes g_drive_get_volumes;
5733 alias c_g_drive_has_media g_drive_has_media;
5734 alias c_g_drive_has_volumes g_drive_has_volumes;
5735 alias c_g_drive_is_media_check_automatic g_drive_is_media_check_automatic;
5736 alias c_g_drive_is_media_removable g_drive_is_media_removable;
5737 alias c_g_drive_is_removable g_drive_is_removable;
5738 alias c_g_drive_poll_for_media g_drive_poll_for_media;
5739 alias c_g_drive_poll_for_media_finish g_drive_poll_for_media_finish;
5740 alias c_g_drive_start g_drive_start;
5741 alias c_g_drive_start_finish g_drive_start_finish;
5742 alias c_g_drive_stop g_drive_stop;
5743 alias c_g_drive_stop_finish g_drive_stop_finish;
5744 
5745 // gio.DtlsClientConnection
5746 
5747 alias c_g_dtls_client_connection_get_type g_dtls_client_connection_get_type;
5748 alias c_g_dtls_client_connection_new g_dtls_client_connection_new;
5749 alias c_g_dtls_client_connection_get_accepted_cas g_dtls_client_connection_get_accepted_cas;
5750 alias c_g_dtls_client_connection_get_server_identity g_dtls_client_connection_get_server_identity;
5751 alias c_g_dtls_client_connection_get_validation_flags g_dtls_client_connection_get_validation_flags;
5752 alias c_g_dtls_client_connection_set_server_identity g_dtls_client_connection_set_server_identity;
5753 alias c_g_dtls_client_connection_set_validation_flags g_dtls_client_connection_set_validation_flags;
5754 
5755 // gio.DtlsConnection
5756 
5757 alias c_g_dtls_connection_get_type g_dtls_connection_get_type;
5758 alias c_g_dtls_connection_close g_dtls_connection_close;
5759 alias c_g_dtls_connection_close_async g_dtls_connection_close_async;
5760 alias c_g_dtls_connection_close_finish g_dtls_connection_close_finish;
5761 alias c_g_dtls_connection_emit_accept_certificate g_dtls_connection_emit_accept_certificate;
5762 alias c_g_dtls_connection_get_certificate g_dtls_connection_get_certificate;
5763 alias c_g_dtls_connection_get_channel_binding_data g_dtls_connection_get_channel_binding_data;
5764 alias c_g_dtls_connection_get_ciphersuite_name g_dtls_connection_get_ciphersuite_name;
5765 alias c_g_dtls_connection_get_database g_dtls_connection_get_database;
5766 alias c_g_dtls_connection_get_interaction g_dtls_connection_get_interaction;
5767 alias c_g_dtls_connection_get_negotiated_protocol g_dtls_connection_get_negotiated_protocol;
5768 alias c_g_dtls_connection_get_peer_certificate g_dtls_connection_get_peer_certificate;
5769 alias c_g_dtls_connection_get_peer_certificate_errors g_dtls_connection_get_peer_certificate_errors;
5770 alias c_g_dtls_connection_get_protocol_version g_dtls_connection_get_protocol_version;
5771 alias c_g_dtls_connection_get_rehandshake_mode g_dtls_connection_get_rehandshake_mode;
5772 alias c_g_dtls_connection_get_require_close_notify g_dtls_connection_get_require_close_notify;
5773 alias c_g_dtls_connection_handshake g_dtls_connection_handshake;
5774 alias c_g_dtls_connection_handshake_async g_dtls_connection_handshake_async;
5775 alias c_g_dtls_connection_handshake_finish g_dtls_connection_handshake_finish;
5776 alias c_g_dtls_connection_set_advertised_protocols g_dtls_connection_set_advertised_protocols;
5777 alias c_g_dtls_connection_set_certificate g_dtls_connection_set_certificate;
5778 alias c_g_dtls_connection_set_database g_dtls_connection_set_database;
5779 alias c_g_dtls_connection_set_interaction g_dtls_connection_set_interaction;
5780 alias c_g_dtls_connection_set_rehandshake_mode g_dtls_connection_set_rehandshake_mode;
5781 alias c_g_dtls_connection_set_require_close_notify g_dtls_connection_set_require_close_notify;
5782 alias c_g_dtls_connection_shutdown g_dtls_connection_shutdown;
5783 alias c_g_dtls_connection_shutdown_async g_dtls_connection_shutdown_async;
5784 alias c_g_dtls_connection_shutdown_finish g_dtls_connection_shutdown_finish;
5785 
5786 // gio.DtlsServerConnection
5787 
5788 alias c_g_dtls_server_connection_get_type g_dtls_server_connection_get_type;
5789 alias c_g_dtls_server_connection_new g_dtls_server_connection_new;
5790 
5791 // gio.Emblem
5792 
5793 alias c_g_emblem_get_type g_emblem_get_type;
5794 alias c_g_emblem_new g_emblem_new;
5795 alias c_g_emblem_new_with_origin g_emblem_new_with_origin;
5796 alias c_g_emblem_get_icon g_emblem_get_icon;
5797 alias c_g_emblem_get_origin g_emblem_get_origin;
5798 
5799 // gio.EmblemedIcon
5800 
5801 alias c_g_emblemed_icon_get_type g_emblemed_icon_get_type;
5802 alias c_g_emblemed_icon_new g_emblemed_icon_new;
5803 alias c_g_emblemed_icon_add_emblem g_emblemed_icon_add_emblem;
5804 alias c_g_emblemed_icon_clear_emblems g_emblemed_icon_clear_emblems;
5805 alias c_g_emblemed_icon_get_emblems g_emblemed_icon_get_emblems;
5806 alias c_g_emblemed_icon_get_icon g_emblemed_icon_get_icon;
5807 
5808 // gio.File
5809 
5810 alias c_g_file_get_type g_file_get_type;
5811 alias c_g_file_new_build_filename g_file_new_build_filename;
5812 alias c_g_file_new_for_commandline_arg g_file_new_for_commandline_arg;
5813 alias c_g_file_new_for_commandline_arg_and_cwd g_file_new_for_commandline_arg_and_cwd;
5814 alias c_g_file_new_for_path g_file_new_for_path;
5815 alias c_g_file_new_for_uri g_file_new_for_uri;
5816 alias c_g_file_new_tmp g_file_new_tmp;
5817 alias c_g_file_parse_name g_file_parse_name;
5818 alias c_g_file_append_to g_file_append_to;
5819 alias c_g_file_append_to_async g_file_append_to_async;
5820 alias c_g_file_append_to_finish g_file_append_to_finish;
5821 alias c_g_file_build_attribute_list_for_copy g_file_build_attribute_list_for_copy;
5822 alias c_g_file_copy g_file_copy;
5823 alias c_g_file_copy_async g_file_copy_async;
5824 alias c_g_file_copy_attributes g_file_copy_attributes;
5825 alias c_g_file_copy_finish g_file_copy_finish;
5826 alias c_g_file_create g_file_create;
5827 alias c_g_file_create_async g_file_create_async;
5828 alias c_g_file_create_finish g_file_create_finish;
5829 alias c_g_file_create_readwrite g_file_create_readwrite;
5830 alias c_g_file_create_readwrite_async g_file_create_readwrite_async;
5831 alias c_g_file_create_readwrite_finish g_file_create_readwrite_finish;
5832 alias c_g_file_delete g_file_delete;
5833 alias c_g_file_delete_async g_file_delete_async;
5834 alias c_g_file_delete_finish g_file_delete_finish;
5835 alias c_g_file_dup g_file_dup;
5836 alias c_g_file_eject_mountable g_file_eject_mountable;
5837 alias c_g_file_eject_mountable_finish g_file_eject_mountable_finish;
5838 alias c_g_file_eject_mountable_with_operation g_file_eject_mountable_with_operation;
5839 alias c_g_file_eject_mountable_with_operation_finish g_file_eject_mountable_with_operation_finish;
5840 alias c_g_file_enumerate_children g_file_enumerate_children;
5841 alias c_g_file_enumerate_children_async g_file_enumerate_children_async;
5842 alias c_g_file_enumerate_children_finish g_file_enumerate_children_finish;
5843 alias c_g_file_equal g_file_equal;
5844 alias c_g_file_find_enclosing_mount g_file_find_enclosing_mount;
5845 alias c_g_file_find_enclosing_mount_async g_file_find_enclosing_mount_async;
5846 alias c_g_file_find_enclosing_mount_finish g_file_find_enclosing_mount_finish;
5847 alias c_g_file_get_basename g_file_get_basename;
5848 alias c_g_file_get_child g_file_get_child;
5849 alias c_g_file_get_child_for_display_name g_file_get_child_for_display_name;
5850 alias c_g_file_get_parent g_file_get_parent;
5851 alias c_g_file_get_parse_name g_file_get_parse_name;
5852 alias c_g_file_get_path g_file_get_path;
5853 alias c_g_file_get_relative_path g_file_get_relative_path;
5854 alias c_g_file_get_uri g_file_get_uri;
5855 alias c_g_file_get_uri_scheme g_file_get_uri_scheme;
5856 alias c_g_file_has_parent g_file_has_parent;
5857 alias c_g_file_has_prefix g_file_has_prefix;
5858 alias c_g_file_has_uri_scheme g_file_has_uri_scheme;
5859 alias c_g_file_hash g_file_hash;
5860 alias c_g_file_is_native g_file_is_native;
5861 alias c_g_file_load_bytes g_file_load_bytes;
5862 alias c_g_file_load_bytes_async g_file_load_bytes_async;
5863 alias c_g_file_load_bytes_finish g_file_load_bytes_finish;
5864 alias c_g_file_load_contents g_file_load_contents;
5865 alias c_g_file_load_contents_async g_file_load_contents_async;
5866 alias c_g_file_load_contents_finish g_file_load_contents_finish;
5867 alias c_g_file_load_partial_contents_async g_file_load_partial_contents_async;
5868 alias c_g_file_load_partial_contents_finish g_file_load_partial_contents_finish;
5869 alias c_g_file_make_directory g_file_make_directory;
5870 alias c_g_file_make_directory_async g_file_make_directory_async;
5871 alias c_g_file_make_directory_finish g_file_make_directory_finish;
5872 alias c_g_file_make_directory_with_parents g_file_make_directory_with_parents;
5873 alias c_g_file_make_symbolic_link g_file_make_symbolic_link;
5874 alias c_g_file_measure_disk_usage g_file_measure_disk_usage;
5875 alias c_g_file_measure_disk_usage_async g_file_measure_disk_usage_async;
5876 alias c_g_file_measure_disk_usage_finish g_file_measure_disk_usage_finish;
5877 alias c_g_file_monitor g_file_monitor;
5878 alias c_g_file_monitor_directory g_file_monitor_directory;
5879 alias c_g_file_monitor_file g_file_monitor_file;
5880 alias c_g_file_mount_enclosing_volume g_file_mount_enclosing_volume;
5881 alias c_g_file_mount_enclosing_volume_finish g_file_mount_enclosing_volume_finish;
5882 alias c_g_file_mount_mountable g_file_mount_mountable;
5883 alias c_g_file_mount_mountable_finish g_file_mount_mountable_finish;
5884 alias c_g_file_move g_file_move;
5885 alias c_g_file_move_async g_file_move_async;
5886 alias c_g_file_move_finish g_file_move_finish;
5887 alias c_g_file_open_readwrite g_file_open_readwrite;
5888 alias c_g_file_open_readwrite_async g_file_open_readwrite_async;
5889 alias c_g_file_open_readwrite_finish g_file_open_readwrite_finish;
5890 alias c_g_file_peek_path g_file_peek_path;
5891 alias c_g_file_poll_mountable g_file_poll_mountable;
5892 alias c_g_file_poll_mountable_finish g_file_poll_mountable_finish;
5893 alias c_g_file_query_default_handler g_file_query_default_handler;
5894 alias c_g_file_query_default_handler_async g_file_query_default_handler_async;
5895 alias c_g_file_query_default_handler_finish g_file_query_default_handler_finish;
5896 alias c_g_file_query_exists g_file_query_exists;
5897 alias c_g_file_query_file_type g_file_query_file_type;
5898 alias c_g_file_query_filesystem_info g_file_query_filesystem_info;
5899 alias c_g_file_query_filesystem_info_async g_file_query_filesystem_info_async;
5900 alias c_g_file_query_filesystem_info_finish g_file_query_filesystem_info_finish;
5901 alias c_g_file_query_info g_file_query_info;
5902 alias c_g_file_query_info_async g_file_query_info_async;
5903 alias c_g_file_query_info_finish g_file_query_info_finish;
5904 alias c_g_file_query_settable_attributes g_file_query_settable_attributes;
5905 alias c_g_file_query_writable_namespaces g_file_query_writable_namespaces;
5906 alias c_g_file_read g_file_read;
5907 alias c_g_file_read_async g_file_read_async;
5908 alias c_g_file_read_finish g_file_read_finish;
5909 alias c_g_file_replace g_file_replace;
5910 alias c_g_file_replace_async g_file_replace_async;
5911 alias c_g_file_replace_contents g_file_replace_contents;
5912 alias c_g_file_replace_contents_async g_file_replace_contents_async;
5913 alias c_g_file_replace_contents_bytes_async g_file_replace_contents_bytes_async;
5914 alias c_g_file_replace_contents_finish g_file_replace_contents_finish;
5915 alias c_g_file_replace_finish g_file_replace_finish;
5916 alias c_g_file_replace_readwrite g_file_replace_readwrite;
5917 alias c_g_file_replace_readwrite_async g_file_replace_readwrite_async;
5918 alias c_g_file_replace_readwrite_finish g_file_replace_readwrite_finish;
5919 alias c_g_file_resolve_relative_path g_file_resolve_relative_path;
5920 alias c_g_file_set_attribute g_file_set_attribute;
5921 alias c_g_file_set_attribute_byte_string g_file_set_attribute_byte_string;
5922 alias c_g_file_set_attribute_int32 g_file_set_attribute_int32;
5923 alias c_g_file_set_attribute_int64 g_file_set_attribute_int64;
5924 alias c_g_file_set_attribute_string g_file_set_attribute_string;
5925 alias c_g_file_set_attribute_uint32 g_file_set_attribute_uint32;
5926 alias c_g_file_set_attribute_uint64 g_file_set_attribute_uint64;
5927 alias c_g_file_set_attributes_async g_file_set_attributes_async;
5928 alias c_g_file_set_attributes_finish g_file_set_attributes_finish;
5929 alias c_g_file_set_attributes_from_info g_file_set_attributes_from_info;
5930 alias c_g_file_set_display_name g_file_set_display_name;
5931 alias c_g_file_set_display_name_async g_file_set_display_name_async;
5932 alias c_g_file_set_display_name_finish g_file_set_display_name_finish;
5933 alias c_g_file_start_mountable g_file_start_mountable;
5934 alias c_g_file_start_mountable_finish g_file_start_mountable_finish;
5935 alias c_g_file_stop_mountable g_file_stop_mountable;
5936 alias c_g_file_stop_mountable_finish g_file_stop_mountable_finish;
5937 alias c_g_file_supports_thread_contexts g_file_supports_thread_contexts;
5938 alias c_g_file_trash g_file_trash;
5939 alias c_g_file_trash_async g_file_trash_async;
5940 alias c_g_file_trash_finish g_file_trash_finish;
5941 alias c_g_file_unmount_mountable g_file_unmount_mountable;
5942 alias c_g_file_unmount_mountable_finish g_file_unmount_mountable_finish;
5943 alias c_g_file_unmount_mountable_with_operation g_file_unmount_mountable_with_operation;
5944 alias c_g_file_unmount_mountable_with_operation_finish g_file_unmount_mountable_with_operation_finish;
5945 
5946 // gio.FileAttributeInfoList
5947 
5948 alias c_g_file_attribute_info_list_get_type g_file_attribute_info_list_get_type;
5949 alias c_g_file_attribute_info_list_new g_file_attribute_info_list_new;
5950 alias c_g_file_attribute_info_list_add g_file_attribute_info_list_add;
5951 alias c_g_file_attribute_info_list_dup g_file_attribute_info_list_dup;
5952 alias c_g_file_attribute_info_list_lookup g_file_attribute_info_list_lookup;
5953 alias c_g_file_attribute_info_list_ref g_file_attribute_info_list_ref;
5954 alias c_g_file_attribute_info_list_unref g_file_attribute_info_list_unref;
5955 
5956 // gio.FileAttributeMatcher
5957 
5958 alias c_g_file_attribute_matcher_get_type g_file_attribute_matcher_get_type;
5959 alias c_g_file_attribute_matcher_new g_file_attribute_matcher_new;
5960 alias c_g_file_attribute_matcher_enumerate_namespace g_file_attribute_matcher_enumerate_namespace;
5961 alias c_g_file_attribute_matcher_enumerate_next g_file_attribute_matcher_enumerate_next;
5962 alias c_g_file_attribute_matcher_matches g_file_attribute_matcher_matches;
5963 alias c_g_file_attribute_matcher_matches_only g_file_attribute_matcher_matches_only;
5964 alias c_g_file_attribute_matcher_ref g_file_attribute_matcher_ref;
5965 alias c_g_file_attribute_matcher_subtract g_file_attribute_matcher_subtract;
5966 alias c_g_file_attribute_matcher_to_string g_file_attribute_matcher_to_string;
5967 alias c_g_file_attribute_matcher_unref g_file_attribute_matcher_unref;
5968 
5969 // gio.FileDescriptorBased
5970 
5971 alias c_g_file_descriptor_based_get_type g_file_descriptor_based_get_type;
5972 alias c_g_file_descriptor_based_get_fd g_file_descriptor_based_get_fd;
5973 
5974 // gio.FileEnumerator
5975 
5976 alias c_g_file_enumerator_get_type g_file_enumerator_get_type;
5977 alias c_g_file_enumerator_close g_file_enumerator_close;
5978 alias c_g_file_enumerator_close_async g_file_enumerator_close_async;
5979 alias c_g_file_enumerator_close_finish g_file_enumerator_close_finish;
5980 alias c_g_file_enumerator_get_child g_file_enumerator_get_child;
5981 alias c_g_file_enumerator_get_container g_file_enumerator_get_container;
5982 alias c_g_file_enumerator_has_pending g_file_enumerator_has_pending;
5983 alias c_g_file_enumerator_is_closed g_file_enumerator_is_closed;
5984 alias c_g_file_enumerator_iterate g_file_enumerator_iterate;
5985 alias c_g_file_enumerator_next_file g_file_enumerator_next_file;
5986 alias c_g_file_enumerator_next_files_async g_file_enumerator_next_files_async;
5987 alias c_g_file_enumerator_next_files_finish g_file_enumerator_next_files_finish;
5988 alias c_g_file_enumerator_set_pending g_file_enumerator_set_pending;
5989 
5990 // gio.FileIOStream
5991 
5992 alias c_g_file_io_stream_get_type g_file_io_stream_get_type;
5993 alias c_g_file_io_stream_get_etag g_file_io_stream_get_etag;
5994 alias c_g_file_io_stream_query_info g_file_io_stream_query_info;
5995 alias c_g_file_io_stream_query_info_async g_file_io_stream_query_info_async;
5996 alias c_g_file_io_stream_query_info_finish g_file_io_stream_query_info_finish;
5997 
5998 // gio.FileIcon
5999 
6000 alias c_g_file_icon_get_type g_file_icon_get_type;
6001 alias c_g_file_icon_new g_file_icon_new;
6002 alias c_g_file_icon_get_file g_file_icon_get_file;
6003 
6004 // gio.FileInfo
6005 
6006 alias c_g_file_info_get_type g_file_info_get_type;
6007 alias c_g_file_info_new g_file_info_new;
6008 alias c_g_file_info_clear_status g_file_info_clear_status;
6009 alias c_g_file_info_copy_into g_file_info_copy_into;
6010 alias c_g_file_info_dup g_file_info_dup;
6011 alias c_g_file_info_get_access_date_time g_file_info_get_access_date_time;
6012 alias c_g_file_info_get_attribute_as_string g_file_info_get_attribute_as_string;
6013 alias c_g_file_info_get_attribute_boolean g_file_info_get_attribute_boolean;
6014 alias c_g_file_info_get_attribute_byte_string g_file_info_get_attribute_byte_string;
6015 alias c_g_file_info_get_attribute_data g_file_info_get_attribute_data;
6016 alias c_g_file_info_get_attribute_int32 g_file_info_get_attribute_int32;
6017 alias c_g_file_info_get_attribute_int64 g_file_info_get_attribute_int64;
6018 alias c_g_file_info_get_attribute_object g_file_info_get_attribute_object;
6019 alias c_g_file_info_get_attribute_status g_file_info_get_attribute_status;
6020 alias c_g_file_info_get_attribute_string g_file_info_get_attribute_string;
6021 alias c_g_file_info_get_attribute_stringv g_file_info_get_attribute_stringv;
6022 alias c_g_file_info_get_attribute_type g_file_info_get_attribute_type;
6023 alias c_g_file_info_get_attribute_uint32 g_file_info_get_attribute_uint32;
6024 alias c_g_file_info_get_attribute_uint64 g_file_info_get_attribute_uint64;
6025 alias c_g_file_info_get_content_type g_file_info_get_content_type;
6026 alias c_g_file_info_get_creation_date_time g_file_info_get_creation_date_time;
6027 alias c_g_file_info_get_deletion_date g_file_info_get_deletion_date;
6028 alias c_g_file_info_get_display_name g_file_info_get_display_name;
6029 alias c_g_file_info_get_edit_name g_file_info_get_edit_name;
6030 alias c_g_file_info_get_etag g_file_info_get_etag;
6031 alias c_g_file_info_get_file_type g_file_info_get_file_type;
6032 alias c_g_file_info_get_icon g_file_info_get_icon;
6033 alias c_g_file_info_get_is_backup g_file_info_get_is_backup;
6034 alias c_g_file_info_get_is_hidden g_file_info_get_is_hidden;
6035 alias c_g_file_info_get_is_symlink g_file_info_get_is_symlink;
6036 alias c_g_file_info_get_modification_date_time g_file_info_get_modification_date_time;
6037 alias c_g_file_info_get_modification_time g_file_info_get_modification_time;
6038 alias c_g_file_info_get_name g_file_info_get_name;
6039 alias c_g_file_info_get_size g_file_info_get_size;
6040 alias c_g_file_info_get_sort_order g_file_info_get_sort_order;
6041 alias c_g_file_info_get_symbolic_icon g_file_info_get_symbolic_icon;
6042 alias c_g_file_info_get_symlink_target g_file_info_get_symlink_target;
6043 alias c_g_file_info_has_attribute g_file_info_has_attribute;
6044 alias c_g_file_info_has_namespace g_file_info_has_namespace;
6045 alias c_g_file_info_list_attributes g_file_info_list_attributes;
6046 alias c_g_file_info_remove_attribute g_file_info_remove_attribute;
6047 alias c_g_file_info_set_access_date_time g_file_info_set_access_date_time;
6048 alias c_g_file_info_set_attribute g_file_info_set_attribute;
6049 alias c_g_file_info_set_attribute_boolean g_file_info_set_attribute_boolean;
6050 alias c_g_file_info_set_attribute_byte_string g_file_info_set_attribute_byte_string;
6051 alias c_g_file_info_set_attribute_int32 g_file_info_set_attribute_int32;
6052 alias c_g_file_info_set_attribute_int64 g_file_info_set_attribute_int64;
6053 alias c_g_file_info_set_attribute_mask g_file_info_set_attribute_mask;
6054 alias c_g_file_info_set_attribute_object g_file_info_set_attribute_object;
6055 alias c_g_file_info_set_attribute_status g_file_info_set_attribute_status;
6056 alias c_g_file_info_set_attribute_string g_file_info_set_attribute_string;
6057 alias c_g_file_info_set_attribute_stringv g_file_info_set_attribute_stringv;
6058 alias c_g_file_info_set_attribute_uint32 g_file_info_set_attribute_uint32;
6059 alias c_g_file_info_set_attribute_uint64 g_file_info_set_attribute_uint64;
6060 alias c_g_file_info_set_content_type g_file_info_set_content_type;
6061 alias c_g_file_info_set_creation_date_time g_file_info_set_creation_date_time;
6062 alias c_g_file_info_set_display_name g_file_info_set_display_name;
6063 alias c_g_file_info_set_edit_name g_file_info_set_edit_name;
6064 alias c_g_file_info_set_file_type g_file_info_set_file_type;
6065 alias c_g_file_info_set_icon g_file_info_set_icon;
6066 alias c_g_file_info_set_is_hidden g_file_info_set_is_hidden;
6067 alias c_g_file_info_set_is_symlink g_file_info_set_is_symlink;
6068 alias c_g_file_info_set_modification_date_time g_file_info_set_modification_date_time;
6069 alias c_g_file_info_set_modification_time g_file_info_set_modification_time;
6070 alias c_g_file_info_set_name g_file_info_set_name;
6071 alias c_g_file_info_set_size g_file_info_set_size;
6072 alias c_g_file_info_set_sort_order g_file_info_set_sort_order;
6073 alias c_g_file_info_set_symbolic_icon g_file_info_set_symbolic_icon;
6074 alias c_g_file_info_set_symlink_target g_file_info_set_symlink_target;
6075 alias c_g_file_info_unset_attribute_mask g_file_info_unset_attribute_mask;
6076 
6077 // gio.FileInputStream
6078 
6079 alias c_g_file_input_stream_get_type g_file_input_stream_get_type;
6080 alias c_g_file_input_stream_query_info g_file_input_stream_query_info;
6081 alias c_g_file_input_stream_query_info_async g_file_input_stream_query_info_async;
6082 alias c_g_file_input_stream_query_info_finish g_file_input_stream_query_info_finish;
6083 
6084 // gio.FileMonitor
6085 
6086 alias c_g_file_monitor_get_type g_file_monitor_get_type;
6087 alias c_g_file_monitor_cancel g_file_monitor_cancel;
6088 alias c_g_file_monitor_emit_event g_file_monitor_emit_event;
6089 alias c_g_file_monitor_is_cancelled g_file_monitor_is_cancelled;
6090 alias c_g_file_monitor_set_rate_limit g_file_monitor_set_rate_limit;
6091 
6092 // gio.FileOutputStream
6093 
6094 alias c_g_file_output_stream_get_type g_file_output_stream_get_type;
6095 alias c_g_file_output_stream_get_etag g_file_output_stream_get_etag;
6096 alias c_g_file_output_stream_query_info g_file_output_stream_query_info;
6097 alias c_g_file_output_stream_query_info_async g_file_output_stream_query_info_async;
6098 alias c_g_file_output_stream_query_info_finish g_file_output_stream_query_info_finish;
6099 
6100 // gio.FilenameCompleter
6101 
6102 alias c_g_filename_completer_get_type g_filename_completer_get_type;
6103 alias c_g_filename_completer_new g_filename_completer_new;
6104 alias c_g_filename_completer_get_completion_suffix g_filename_completer_get_completion_suffix;
6105 alias c_g_filename_completer_get_completions g_filename_completer_get_completions;
6106 alias c_g_filename_completer_set_dirs_only g_filename_completer_set_dirs_only;
6107 
6108 // gio.FilterInputStream
6109 
6110 alias c_g_filter_input_stream_get_type g_filter_input_stream_get_type;
6111 alias c_g_filter_input_stream_get_base_stream g_filter_input_stream_get_base_stream;
6112 alias c_g_filter_input_stream_get_close_base_stream g_filter_input_stream_get_close_base_stream;
6113 alias c_g_filter_input_stream_set_close_base_stream g_filter_input_stream_set_close_base_stream;
6114 
6115 // gio.FilterOutputStream
6116 
6117 alias c_g_filter_output_stream_get_type g_filter_output_stream_get_type;
6118 alias c_g_filter_output_stream_get_base_stream g_filter_output_stream_get_base_stream;
6119 alias c_g_filter_output_stream_get_close_base_stream g_filter_output_stream_get_close_base_stream;
6120 alias c_g_filter_output_stream_set_close_base_stream g_filter_output_stream_set_close_base_stream;
6121 
6122 // gio.IOExtension
6123 
6124 alias c_g_io_extension_get_name g_io_extension_get_name;
6125 alias c_g_io_extension_get_priority g_io_extension_get_priority;
6126 alias c_g_io_extension_get_type g_io_extension_get_type;
6127 alias c_g_io_extension_ref_class g_io_extension_ref_class;
6128 
6129 // gio.IOExtensionPoint
6130 
6131 alias c_g_io_extension_point_get_extension_by_name g_io_extension_point_get_extension_by_name;
6132 alias c_g_io_extension_point_get_extensions g_io_extension_point_get_extensions;
6133 alias c_g_io_extension_point_get_required_type g_io_extension_point_get_required_type;
6134 alias c_g_io_extension_point_set_required_type g_io_extension_point_set_required_type;
6135 alias c_g_io_extension_point_implement g_io_extension_point_implement;
6136 alias c_g_io_extension_point_lookup g_io_extension_point_lookup;
6137 alias c_g_io_extension_point_register g_io_extension_point_register;
6138 
6139 // gio.IOModule
6140 
6141 alias c_g_io_module_get_type g_io_module_get_type;
6142 alias c_g_io_module_new g_io_module_new;
6143 alias c_g_io_modules_load_all_in_directory g_io_modules_load_all_in_directory;
6144 alias c_g_io_modules_load_all_in_directory_with_scope g_io_modules_load_all_in_directory_with_scope;
6145 alias c_g_io_modules_scan_all_in_directory g_io_modules_scan_all_in_directory;
6146 alias c_g_io_modules_scan_all_in_directory_with_scope g_io_modules_scan_all_in_directory_with_scope;
6147 
6148 // gio.IOModuleScope
6149 
6150 alias c_g_io_module_scope_block g_io_module_scope_block;
6151 alias c_g_io_module_scope_free g_io_module_scope_free;
6152 alias c_g_io_module_scope_new g_io_module_scope_new;
6153 
6154 // gio.IOSchedulerJob
6155 
6156 alias c_g_io_scheduler_job_send_to_mainloop g_io_scheduler_job_send_to_mainloop;
6157 alias c_g_io_scheduler_job_send_to_mainloop_async g_io_scheduler_job_send_to_mainloop_async;
6158 alias c_g_io_scheduler_cancel_all_jobs g_io_scheduler_cancel_all_jobs;
6159 alias c_g_io_scheduler_push_job g_io_scheduler_push_job;
6160 
6161 // gio.IOStream
6162 
6163 alias c_g_io_stream_get_type g_io_stream_get_type;
6164 alias c_g_io_stream_splice_finish g_io_stream_splice_finish;
6165 alias c_g_io_stream_clear_pending g_io_stream_clear_pending;
6166 alias c_g_io_stream_close g_io_stream_close;
6167 alias c_g_io_stream_close_async g_io_stream_close_async;
6168 alias c_g_io_stream_close_finish g_io_stream_close_finish;
6169 alias c_g_io_stream_get_input_stream g_io_stream_get_input_stream;
6170 alias c_g_io_stream_get_output_stream g_io_stream_get_output_stream;
6171 alias c_g_io_stream_has_pending g_io_stream_has_pending;
6172 alias c_g_io_stream_is_closed g_io_stream_is_closed;
6173 alias c_g_io_stream_set_pending g_io_stream_set_pending;
6174 alias c_g_io_stream_splice_async g_io_stream_splice_async;
6175 
6176 // gio.Icon
6177 
6178 alias c_g_icon_get_type g_icon_get_type;
6179 alias c_g_icon_deserialize g_icon_deserialize;
6180 alias c_g_icon_hash g_icon_hash;
6181 alias c_g_icon_new_for_string g_icon_new_for_string;
6182 alias c_g_icon_equal g_icon_equal;
6183 alias c_g_icon_serialize g_icon_serialize;
6184 alias c_g_icon_to_string g_icon_to_string;
6185 
6186 // gio.InetAddress
6187 
6188 alias c_g_inet_address_get_type g_inet_address_get_type;
6189 alias c_g_inet_address_new_any g_inet_address_new_any;
6190 alias c_g_inet_address_new_from_bytes g_inet_address_new_from_bytes;
6191 alias c_g_inet_address_new_from_string g_inet_address_new_from_string;
6192 alias c_g_inet_address_new_loopback g_inet_address_new_loopback;
6193 alias c_g_inet_address_equal g_inet_address_equal;
6194 alias c_g_inet_address_get_family g_inet_address_get_family;
6195 alias c_g_inet_address_get_is_any g_inet_address_get_is_any;
6196 alias c_g_inet_address_get_is_link_local g_inet_address_get_is_link_local;
6197 alias c_g_inet_address_get_is_loopback g_inet_address_get_is_loopback;
6198 alias c_g_inet_address_get_is_mc_global g_inet_address_get_is_mc_global;
6199 alias c_g_inet_address_get_is_mc_link_local g_inet_address_get_is_mc_link_local;
6200 alias c_g_inet_address_get_is_mc_node_local g_inet_address_get_is_mc_node_local;
6201 alias c_g_inet_address_get_is_mc_org_local g_inet_address_get_is_mc_org_local;
6202 alias c_g_inet_address_get_is_mc_site_local g_inet_address_get_is_mc_site_local;
6203 alias c_g_inet_address_get_is_multicast g_inet_address_get_is_multicast;
6204 alias c_g_inet_address_get_is_site_local g_inet_address_get_is_site_local;
6205 alias c_g_inet_address_get_native_size g_inet_address_get_native_size;
6206 alias c_g_inet_address_to_bytes g_inet_address_to_bytes;
6207 alias c_g_inet_address_to_string g_inet_address_to_string;
6208 
6209 // gio.InetAddressMask
6210 
6211 alias c_g_inet_address_mask_get_type g_inet_address_mask_get_type;
6212 alias c_g_inet_address_mask_new g_inet_address_mask_new;
6213 alias c_g_inet_address_mask_new_from_string g_inet_address_mask_new_from_string;
6214 alias c_g_inet_address_mask_equal g_inet_address_mask_equal;
6215 alias c_g_inet_address_mask_get_address g_inet_address_mask_get_address;
6216 alias c_g_inet_address_mask_get_family g_inet_address_mask_get_family;
6217 alias c_g_inet_address_mask_get_length g_inet_address_mask_get_length;
6218 alias c_g_inet_address_mask_matches g_inet_address_mask_matches;
6219 alias c_g_inet_address_mask_to_string g_inet_address_mask_to_string;
6220 
6221 // gio.InetSocketAddress
6222 
6223 alias c_g_inet_socket_address_get_type g_inet_socket_address_get_type;
6224 alias c_g_inet_socket_address_new g_inet_socket_address_new;
6225 alias c_g_inet_socket_address_new_from_string g_inet_socket_address_new_from_string;
6226 alias c_g_inet_socket_address_get_address g_inet_socket_address_get_address;
6227 alias c_g_inet_socket_address_get_flowinfo g_inet_socket_address_get_flowinfo;
6228 alias c_g_inet_socket_address_get_port g_inet_socket_address_get_port;
6229 alias c_g_inet_socket_address_get_scope_id g_inet_socket_address_get_scope_id;
6230 
6231 // gio.Initable
6232 
6233 alias c_g_initable_get_type g_initable_get_type;
6234 alias c_g_initable_new g_initable_new;
6235 alias c_g_initable_new_valist g_initable_new_valist;
6236 alias c_g_initable_newv g_initable_newv;
6237 alias c_g_initable_init g_initable_init;
6238 
6239 // gio.InputStream
6240 
6241 alias c_g_input_stream_get_type g_input_stream_get_type;
6242 alias c_g_input_stream_clear_pending g_input_stream_clear_pending;
6243 alias c_g_input_stream_close g_input_stream_close;
6244 alias c_g_input_stream_close_async g_input_stream_close_async;
6245 alias c_g_input_stream_close_finish g_input_stream_close_finish;
6246 alias c_g_input_stream_has_pending g_input_stream_has_pending;
6247 alias c_g_input_stream_is_closed g_input_stream_is_closed;
6248 alias c_g_input_stream_read g_input_stream_read;
6249 alias c_g_input_stream_read_all g_input_stream_read_all;
6250 alias c_g_input_stream_read_all_async g_input_stream_read_all_async;
6251 alias c_g_input_stream_read_all_finish g_input_stream_read_all_finish;
6252 alias c_g_input_stream_read_async g_input_stream_read_async;
6253 alias c_g_input_stream_read_bytes g_input_stream_read_bytes;
6254 alias c_g_input_stream_read_bytes_async g_input_stream_read_bytes_async;
6255 alias c_g_input_stream_read_bytes_finish g_input_stream_read_bytes_finish;
6256 alias c_g_input_stream_read_finish g_input_stream_read_finish;
6257 alias c_g_input_stream_set_pending g_input_stream_set_pending;
6258 alias c_g_input_stream_skip g_input_stream_skip;
6259 alias c_g_input_stream_skip_async g_input_stream_skip_async;
6260 alias c_g_input_stream_skip_finish g_input_stream_skip_finish;
6261 
6262 // gio.ListModel
6263 
6264 alias c_g_list_model_get_type g_list_model_get_type;
6265 alias c_g_list_model_get_item g_list_model_get_item;
6266 alias c_g_list_model_get_item_type g_list_model_get_item_type;
6267 alias c_g_list_model_get_n_items g_list_model_get_n_items;
6268 alias c_g_list_model_get_object g_list_model_get_object;
6269 alias c_g_list_model_items_changed g_list_model_items_changed;
6270 
6271 // gio.ListStore
6272 
6273 alias c_g_list_store_get_type g_list_store_get_type;
6274 alias c_g_list_store_new g_list_store_new;
6275 alias c_g_list_store_append g_list_store_append;
6276 alias c_g_list_store_find g_list_store_find;
6277 alias c_g_list_store_find_with_equal_func g_list_store_find_with_equal_func;
6278 alias c_g_list_store_insert g_list_store_insert;
6279 alias c_g_list_store_insert_sorted g_list_store_insert_sorted;
6280 alias c_g_list_store_remove g_list_store_remove;
6281 alias c_g_list_store_remove_all g_list_store_remove_all;
6282 alias c_g_list_store_sort g_list_store_sort;
6283 alias c_g_list_store_splice g_list_store_splice;
6284 
6285 // gio.LoadableIcon
6286 
6287 alias c_g_loadable_icon_get_type g_loadable_icon_get_type;
6288 alias c_g_loadable_icon_load g_loadable_icon_load;
6289 alias c_g_loadable_icon_load_async g_loadable_icon_load_async;
6290 alias c_g_loadable_icon_load_finish g_loadable_icon_load_finish;
6291 
6292 // gio.MemoryInputStream
6293 
6294 alias c_g_memory_input_stream_get_type g_memory_input_stream_get_type;
6295 alias c_g_memory_input_stream_new g_memory_input_stream_new;
6296 alias c_g_memory_input_stream_new_from_bytes g_memory_input_stream_new_from_bytes;
6297 alias c_g_memory_input_stream_new_from_data g_memory_input_stream_new_from_data;
6298 alias c_g_memory_input_stream_add_bytes g_memory_input_stream_add_bytes;
6299 alias c_g_memory_input_stream_add_data g_memory_input_stream_add_data;
6300 
6301 // gio.MemoryMonitor
6302 
6303 alias c_g_memory_monitor_get_type g_memory_monitor_get_type;
6304 alias c_g_memory_monitor_dup_default g_memory_monitor_dup_default;
6305 
6306 // gio.MemoryOutputStream
6307 
6308 alias c_g_memory_output_stream_get_type g_memory_output_stream_get_type;
6309 alias c_g_memory_output_stream_new g_memory_output_stream_new;
6310 alias c_g_memory_output_stream_new_resizable g_memory_output_stream_new_resizable;
6311 alias c_g_memory_output_stream_get_data g_memory_output_stream_get_data;
6312 alias c_g_memory_output_stream_get_data_size g_memory_output_stream_get_data_size;
6313 alias c_g_memory_output_stream_get_size g_memory_output_stream_get_size;
6314 alias c_g_memory_output_stream_steal_as_bytes g_memory_output_stream_steal_as_bytes;
6315 alias c_g_memory_output_stream_steal_data g_memory_output_stream_steal_data;
6316 
6317 // gio.Menu
6318 
6319 alias c_g_menu_get_type g_menu_get_type;
6320 alias c_g_menu_new g_menu_new;
6321 alias c_g_menu_append g_menu_append;
6322 alias c_g_menu_append_item g_menu_append_item;
6323 alias c_g_menu_append_section g_menu_append_section;
6324 alias c_g_menu_append_submenu g_menu_append_submenu;
6325 alias c_g_menu_freeze g_menu_freeze;
6326 alias c_g_menu_insert g_menu_insert;
6327 alias c_g_menu_insert_item g_menu_insert_item;
6328 alias c_g_menu_insert_section g_menu_insert_section;
6329 alias c_g_menu_insert_submenu g_menu_insert_submenu;
6330 alias c_g_menu_prepend g_menu_prepend;
6331 alias c_g_menu_prepend_item g_menu_prepend_item;
6332 alias c_g_menu_prepend_section g_menu_prepend_section;
6333 alias c_g_menu_prepend_submenu g_menu_prepend_submenu;
6334 alias c_g_menu_remove g_menu_remove;
6335 alias c_g_menu_remove_all g_menu_remove_all;
6336 
6337 // gio.MenuAttributeIter
6338 
6339 alias c_g_menu_attribute_iter_get_type g_menu_attribute_iter_get_type;
6340 alias c_g_menu_attribute_iter_get_name g_menu_attribute_iter_get_name;
6341 alias c_g_menu_attribute_iter_get_next g_menu_attribute_iter_get_next;
6342 alias c_g_menu_attribute_iter_get_value g_menu_attribute_iter_get_value;
6343 alias c_g_menu_attribute_iter_next g_menu_attribute_iter_next;
6344 
6345 // gio.MenuItem
6346 
6347 alias c_g_menu_item_get_type g_menu_item_get_type;
6348 alias c_g_menu_item_new g_menu_item_new;
6349 alias c_g_menu_item_new_from_model g_menu_item_new_from_model;
6350 alias c_g_menu_item_new_section g_menu_item_new_section;
6351 alias c_g_menu_item_new_submenu g_menu_item_new_submenu;
6352 alias c_g_menu_item_get_attribute g_menu_item_get_attribute;
6353 alias c_g_menu_item_get_attribute_value g_menu_item_get_attribute_value;
6354 alias c_g_menu_item_get_link g_menu_item_get_link;
6355 alias c_g_menu_item_set_action_and_target g_menu_item_set_action_and_target;
6356 alias c_g_menu_item_set_action_and_target_value g_menu_item_set_action_and_target_value;
6357 alias c_g_menu_item_set_attribute g_menu_item_set_attribute;
6358 alias c_g_menu_item_set_attribute_value g_menu_item_set_attribute_value;
6359 alias c_g_menu_item_set_detailed_action g_menu_item_set_detailed_action;
6360 alias c_g_menu_item_set_icon g_menu_item_set_icon;
6361 alias c_g_menu_item_set_label g_menu_item_set_label;
6362 alias c_g_menu_item_set_link g_menu_item_set_link;
6363 alias c_g_menu_item_set_section g_menu_item_set_section;
6364 alias c_g_menu_item_set_submenu g_menu_item_set_submenu;
6365 
6366 // gio.MenuLinkIter
6367 
6368 alias c_g_menu_link_iter_get_type g_menu_link_iter_get_type;
6369 alias c_g_menu_link_iter_get_name g_menu_link_iter_get_name;
6370 alias c_g_menu_link_iter_get_next g_menu_link_iter_get_next;
6371 alias c_g_menu_link_iter_get_value g_menu_link_iter_get_value;
6372 alias c_g_menu_link_iter_next g_menu_link_iter_next;
6373 
6374 // gio.MenuModel
6375 
6376 alias c_g_menu_model_get_type g_menu_model_get_type;
6377 alias c_g_menu_model_get_item_attribute g_menu_model_get_item_attribute;
6378 alias c_g_menu_model_get_item_attribute_value g_menu_model_get_item_attribute_value;
6379 alias c_g_menu_model_get_item_link g_menu_model_get_item_link;
6380 alias c_g_menu_model_get_n_items g_menu_model_get_n_items;
6381 alias c_g_menu_model_is_mutable g_menu_model_is_mutable;
6382 alias c_g_menu_model_items_changed g_menu_model_items_changed;
6383 alias c_g_menu_model_iterate_item_attributes g_menu_model_iterate_item_attributes;
6384 alias c_g_menu_model_iterate_item_links g_menu_model_iterate_item_links;
6385 
6386 // gio.Mount
6387 
6388 alias c_g_mount_get_type g_mount_get_type;
6389 alias c_g_mount_can_eject g_mount_can_eject;
6390 alias c_g_mount_can_unmount g_mount_can_unmount;
6391 alias c_g_mount_eject g_mount_eject;
6392 alias c_g_mount_eject_finish g_mount_eject_finish;
6393 alias c_g_mount_eject_with_operation g_mount_eject_with_operation;
6394 alias c_g_mount_eject_with_operation_finish g_mount_eject_with_operation_finish;
6395 alias c_g_mount_get_default_location g_mount_get_default_location;
6396 alias c_g_mount_get_drive g_mount_get_drive;
6397 alias c_g_mount_get_icon g_mount_get_icon;
6398 alias c_g_mount_get_name g_mount_get_name;
6399 alias c_g_mount_get_root g_mount_get_root;
6400 alias c_g_mount_get_sort_key g_mount_get_sort_key;
6401 alias c_g_mount_get_symbolic_icon g_mount_get_symbolic_icon;
6402 alias c_g_mount_get_uuid g_mount_get_uuid;
6403 alias c_g_mount_get_volume g_mount_get_volume;
6404 alias c_g_mount_guess_content_type g_mount_guess_content_type;
6405 alias c_g_mount_guess_content_type_finish g_mount_guess_content_type_finish;
6406 alias c_g_mount_guess_content_type_sync g_mount_guess_content_type_sync;
6407 alias c_g_mount_is_shadowed g_mount_is_shadowed;
6408 alias c_g_mount_remount g_mount_remount;
6409 alias c_g_mount_remount_finish g_mount_remount_finish;
6410 alias c_g_mount_shadow g_mount_shadow;
6411 alias c_g_mount_unmount g_mount_unmount;
6412 alias c_g_mount_unmount_finish g_mount_unmount_finish;
6413 alias c_g_mount_unmount_with_operation g_mount_unmount_with_operation;
6414 alias c_g_mount_unmount_with_operation_finish g_mount_unmount_with_operation_finish;
6415 alias c_g_mount_unshadow g_mount_unshadow;
6416 
6417 // gio.MountOperation
6418 
6419 alias c_g_mount_operation_get_type g_mount_operation_get_type;
6420 alias c_g_mount_operation_new g_mount_operation_new;
6421 alias c_g_mount_operation_get_anonymous g_mount_operation_get_anonymous;
6422 alias c_g_mount_operation_get_choice g_mount_operation_get_choice;
6423 alias c_g_mount_operation_get_domain g_mount_operation_get_domain;
6424 alias c_g_mount_operation_get_is_tcrypt_hidden_volume g_mount_operation_get_is_tcrypt_hidden_volume;
6425 alias c_g_mount_operation_get_is_tcrypt_system_volume g_mount_operation_get_is_tcrypt_system_volume;
6426 alias c_g_mount_operation_get_password g_mount_operation_get_password;
6427 alias c_g_mount_operation_get_password_save g_mount_operation_get_password_save;
6428 alias c_g_mount_operation_get_pim g_mount_operation_get_pim;
6429 alias c_g_mount_operation_get_username g_mount_operation_get_username;
6430 alias c_g_mount_operation_reply g_mount_operation_reply;
6431 alias c_g_mount_operation_set_anonymous g_mount_operation_set_anonymous;
6432 alias c_g_mount_operation_set_choice g_mount_operation_set_choice;
6433 alias c_g_mount_operation_set_domain g_mount_operation_set_domain;
6434 alias c_g_mount_operation_set_is_tcrypt_hidden_volume g_mount_operation_set_is_tcrypt_hidden_volume;
6435 alias c_g_mount_operation_set_is_tcrypt_system_volume g_mount_operation_set_is_tcrypt_system_volume;
6436 alias c_g_mount_operation_set_password g_mount_operation_set_password;
6437 alias c_g_mount_operation_set_password_save g_mount_operation_set_password_save;
6438 alias c_g_mount_operation_set_pim g_mount_operation_set_pim;
6439 alias c_g_mount_operation_set_username g_mount_operation_set_username;
6440 
6441 // gio.NativeSocketAddress
6442 
6443 alias c_g_native_socket_address_get_type g_native_socket_address_get_type;
6444 alias c_g_native_socket_address_new g_native_socket_address_new;
6445 
6446 // gio.NativeVolumeMonitor
6447 
6448 alias c_g_native_volume_monitor_get_type g_native_volume_monitor_get_type;
6449 
6450 // gio.NetworkAddress
6451 
6452 alias c_g_network_address_get_type g_network_address_get_type;
6453 alias c_g_network_address_new g_network_address_new;
6454 alias c_g_network_address_new_loopback g_network_address_new_loopback;
6455 alias c_g_network_address_parse g_network_address_parse;
6456 alias c_g_network_address_parse_uri g_network_address_parse_uri;
6457 alias c_g_network_address_get_hostname g_network_address_get_hostname;
6458 alias c_g_network_address_get_port g_network_address_get_port;
6459 alias c_g_network_address_get_scheme g_network_address_get_scheme;
6460 
6461 // gio.NetworkMonitor
6462 
6463 alias c_g_network_monitor_get_type g_network_monitor_get_type;
6464 alias c_g_network_monitor_get_default g_network_monitor_get_default;
6465 alias c_g_network_monitor_can_reach g_network_monitor_can_reach;
6466 alias c_g_network_monitor_can_reach_async g_network_monitor_can_reach_async;
6467 alias c_g_network_monitor_can_reach_finish g_network_monitor_can_reach_finish;
6468 alias c_g_network_monitor_get_connectivity g_network_monitor_get_connectivity;
6469 alias c_g_network_monitor_get_network_available g_network_monitor_get_network_available;
6470 alias c_g_network_monitor_get_network_metered g_network_monitor_get_network_metered;
6471 
6472 // gio.NetworkService
6473 
6474 alias c_g_network_service_get_type g_network_service_get_type;
6475 alias c_g_network_service_new g_network_service_new;
6476 alias c_g_network_service_get_domain g_network_service_get_domain;
6477 alias c_g_network_service_get_protocol g_network_service_get_protocol;
6478 alias c_g_network_service_get_scheme g_network_service_get_scheme;
6479 alias c_g_network_service_get_service g_network_service_get_service;
6480 alias c_g_network_service_set_scheme g_network_service_set_scheme;
6481 
6482 // gio.Notification
6483 
6484 alias c_g_notification_get_type g_notification_get_type;
6485 alias c_g_notification_new g_notification_new;
6486 alias c_g_notification_add_button g_notification_add_button;
6487 alias c_g_notification_add_button_with_target g_notification_add_button_with_target;
6488 alias c_g_notification_add_button_with_target_value g_notification_add_button_with_target_value;
6489 alias c_g_notification_set_body g_notification_set_body;
6490 alias c_g_notification_set_category g_notification_set_category;
6491 alias c_g_notification_set_default_action g_notification_set_default_action;
6492 alias c_g_notification_set_default_action_and_target g_notification_set_default_action_and_target;
6493 alias c_g_notification_set_default_action_and_target_value g_notification_set_default_action_and_target_value;
6494 alias c_g_notification_set_icon g_notification_set_icon;
6495 alias c_g_notification_set_priority g_notification_set_priority;
6496 alias c_g_notification_set_title g_notification_set_title;
6497 alias c_g_notification_set_urgent g_notification_set_urgent;
6498 
6499 // gio.OutputStream
6500 
6501 alias c_g_output_stream_get_type g_output_stream_get_type;
6502 alias c_g_output_stream_clear_pending g_output_stream_clear_pending;
6503 alias c_g_output_stream_close g_output_stream_close;
6504 alias c_g_output_stream_close_async g_output_stream_close_async;
6505 alias c_g_output_stream_close_finish g_output_stream_close_finish;
6506 alias c_g_output_stream_flush g_output_stream_flush;
6507 alias c_g_output_stream_flush_async g_output_stream_flush_async;
6508 alias c_g_output_stream_flush_finish g_output_stream_flush_finish;
6509 alias c_g_output_stream_has_pending g_output_stream_has_pending;
6510 alias c_g_output_stream_is_closed g_output_stream_is_closed;
6511 alias c_g_output_stream_is_closing g_output_stream_is_closing;
6512 alias c_g_output_stream_printf g_output_stream_printf;
6513 alias c_g_output_stream_set_pending g_output_stream_set_pending;
6514 alias c_g_output_stream_splice g_output_stream_splice;
6515 alias c_g_output_stream_splice_async g_output_stream_splice_async;
6516 alias c_g_output_stream_splice_finish g_output_stream_splice_finish;
6517 alias c_g_output_stream_vprintf g_output_stream_vprintf;
6518 alias c_g_output_stream_write g_output_stream_write;
6519 alias c_g_output_stream_write_all g_output_stream_write_all;
6520 alias c_g_output_stream_write_all_async g_output_stream_write_all_async;
6521 alias c_g_output_stream_write_all_finish g_output_stream_write_all_finish;
6522 alias c_g_output_stream_write_async g_output_stream_write_async;
6523 alias c_g_output_stream_write_bytes g_output_stream_write_bytes;
6524 alias c_g_output_stream_write_bytes_async g_output_stream_write_bytes_async;
6525 alias c_g_output_stream_write_bytes_finish g_output_stream_write_bytes_finish;
6526 alias c_g_output_stream_write_finish g_output_stream_write_finish;
6527 alias c_g_output_stream_writev g_output_stream_writev;
6528 alias c_g_output_stream_writev_all g_output_stream_writev_all;
6529 alias c_g_output_stream_writev_all_async g_output_stream_writev_all_async;
6530 alias c_g_output_stream_writev_all_finish g_output_stream_writev_all_finish;
6531 alias c_g_output_stream_writev_async g_output_stream_writev_async;
6532 alias c_g_output_stream_writev_finish g_output_stream_writev_finish;
6533 
6534 // gio.Permission
6535 
6536 alias c_g_permission_get_type g_permission_get_type;
6537 alias c_g_permission_acquire g_permission_acquire;
6538 alias c_g_permission_acquire_async g_permission_acquire_async;
6539 alias c_g_permission_acquire_finish g_permission_acquire_finish;
6540 alias c_g_permission_get_allowed g_permission_get_allowed;
6541 alias c_g_permission_get_can_acquire g_permission_get_can_acquire;
6542 alias c_g_permission_get_can_release g_permission_get_can_release;
6543 alias c_g_permission_impl_update g_permission_impl_update;
6544 alias c_g_permission_release g_permission_release;
6545 alias c_g_permission_release_async g_permission_release_async;
6546 alias c_g_permission_release_finish g_permission_release_finish;
6547 
6548 // gio.PollableInputStream
6549 
6550 alias c_g_pollable_input_stream_get_type g_pollable_input_stream_get_type;
6551 alias c_g_pollable_input_stream_can_poll g_pollable_input_stream_can_poll;
6552 alias c_g_pollable_input_stream_create_source g_pollable_input_stream_create_source;
6553 alias c_g_pollable_input_stream_is_readable g_pollable_input_stream_is_readable;
6554 alias c_g_pollable_input_stream_read_nonblocking g_pollable_input_stream_read_nonblocking;
6555 
6556 // gio.PollableOutputStream
6557 
6558 alias c_g_pollable_output_stream_get_type g_pollable_output_stream_get_type;
6559 alias c_g_pollable_output_stream_can_poll g_pollable_output_stream_can_poll;
6560 alias c_g_pollable_output_stream_create_source g_pollable_output_stream_create_source;
6561 alias c_g_pollable_output_stream_is_writable g_pollable_output_stream_is_writable;
6562 alias c_g_pollable_output_stream_write_nonblocking g_pollable_output_stream_write_nonblocking;
6563 alias c_g_pollable_output_stream_writev_nonblocking g_pollable_output_stream_writev_nonblocking;
6564 
6565 // gio.PowerProfileMonitor
6566 
6567 alias c_g_power_profile_monitor_get_type g_power_profile_monitor_get_type;
6568 alias c_g_power_profile_monitor_dup_default g_power_profile_monitor_dup_default;
6569 alias c_g_power_profile_monitor_get_power_saver_enabled g_power_profile_monitor_get_power_saver_enabled;
6570 
6571 // gio.PropertyAction
6572 
6573 alias c_g_property_action_get_type g_property_action_get_type;
6574 alias c_g_property_action_new g_property_action_new;
6575 
6576 // gio.Proxy
6577 
6578 alias c_g_proxy_get_type g_proxy_get_type;
6579 alias c_g_proxy_get_default_for_protocol g_proxy_get_default_for_protocol;
6580 alias c_g_proxy_connect g_proxy_connect;
6581 alias c_g_proxy_connect_async g_proxy_connect_async;
6582 alias c_g_proxy_connect_finish g_proxy_connect_finish;
6583 alias c_g_proxy_supports_hostname g_proxy_supports_hostname;
6584 
6585 // gio.ProxyAddress
6586 
6587 alias c_g_proxy_address_get_type g_proxy_address_get_type;
6588 alias c_g_proxy_address_new g_proxy_address_new;
6589 alias c_g_proxy_address_get_destination_hostname g_proxy_address_get_destination_hostname;
6590 alias c_g_proxy_address_get_destination_port g_proxy_address_get_destination_port;
6591 alias c_g_proxy_address_get_destination_protocol g_proxy_address_get_destination_protocol;
6592 alias c_g_proxy_address_get_password g_proxy_address_get_password;
6593 alias c_g_proxy_address_get_protocol g_proxy_address_get_protocol;
6594 alias c_g_proxy_address_get_uri g_proxy_address_get_uri;
6595 alias c_g_proxy_address_get_username g_proxy_address_get_username;
6596 
6597 // gio.ProxyAddressEnumerator
6598 
6599 alias c_g_proxy_address_enumerator_get_type g_proxy_address_enumerator_get_type;
6600 
6601 // gio.ProxyResolver
6602 
6603 alias c_g_proxy_resolver_get_type g_proxy_resolver_get_type;
6604 alias c_g_proxy_resolver_get_default g_proxy_resolver_get_default;
6605 alias c_g_proxy_resolver_is_supported g_proxy_resolver_is_supported;
6606 alias c_g_proxy_resolver_lookup g_proxy_resolver_lookup;
6607 alias c_g_proxy_resolver_lookup_async g_proxy_resolver_lookup_async;
6608 alias c_g_proxy_resolver_lookup_finish g_proxy_resolver_lookup_finish;
6609 
6610 // gio.RemoteActionGroup
6611 
6612 alias c_g_remote_action_group_get_type g_remote_action_group_get_type;
6613 alias c_g_remote_action_group_activate_action_full g_remote_action_group_activate_action_full;
6614 alias c_g_remote_action_group_change_action_state_full g_remote_action_group_change_action_state_full;
6615 
6616 // gio.Resolver
6617 
6618 alias c_g_resolver_get_type g_resolver_get_type;
6619 alias c_g_resolver_free_addresses g_resolver_free_addresses;
6620 alias c_g_resolver_free_targets g_resolver_free_targets;
6621 alias c_g_resolver_get_default g_resolver_get_default;
6622 alias c_g_resolver_lookup_by_address g_resolver_lookup_by_address;
6623 alias c_g_resolver_lookup_by_address_async g_resolver_lookup_by_address_async;
6624 alias c_g_resolver_lookup_by_address_finish g_resolver_lookup_by_address_finish;
6625 alias c_g_resolver_lookup_by_name g_resolver_lookup_by_name;
6626 alias c_g_resolver_lookup_by_name_async g_resolver_lookup_by_name_async;
6627 alias c_g_resolver_lookup_by_name_finish g_resolver_lookup_by_name_finish;
6628 alias c_g_resolver_lookup_by_name_with_flags g_resolver_lookup_by_name_with_flags;
6629 alias c_g_resolver_lookup_by_name_with_flags_async g_resolver_lookup_by_name_with_flags_async;
6630 alias c_g_resolver_lookup_by_name_with_flags_finish g_resolver_lookup_by_name_with_flags_finish;
6631 alias c_g_resolver_lookup_records g_resolver_lookup_records;
6632 alias c_g_resolver_lookup_records_async g_resolver_lookup_records_async;
6633 alias c_g_resolver_lookup_records_finish g_resolver_lookup_records_finish;
6634 alias c_g_resolver_lookup_service g_resolver_lookup_service;
6635 alias c_g_resolver_lookup_service_async g_resolver_lookup_service_async;
6636 alias c_g_resolver_lookup_service_finish g_resolver_lookup_service_finish;
6637 alias c_g_resolver_set_default g_resolver_set_default;
6638 
6639 // gio.Resource
6640 
6641 alias c_g_resource_get_type g_resource_get_type;
6642 alias c_g_resource_new_from_data g_resource_new_from_data;
6643 alias c_g_resources_register g_resources_register;
6644 alias c_g_resources_unregister g_resources_unregister;
6645 alias c_g_resource_enumerate_children g_resource_enumerate_children;
6646 alias c_g_resource_get_info g_resource_get_info;
6647 alias c_g_resource_lookup_data g_resource_lookup_data;
6648 alias c_g_resource_open_stream g_resource_open_stream;
6649 alias c_g_resource_ref g_resource_ref;
6650 alias c_g_resource_unref g_resource_unref;
6651 alias c_g_resource_load g_resource_load;
6652 alias c_g_resources_enumerate_children g_resources_enumerate_children;
6653 alias c_g_resources_get_info g_resources_get_info;
6654 alias c_g_resources_lookup_data g_resources_lookup_data;
6655 alias c_g_resources_open_stream g_resources_open_stream;
6656 
6657 // gio.Seekable
6658 
6659 alias c_g_seekable_get_type g_seekable_get_type;
6660 alias c_g_seekable_can_seek g_seekable_can_seek;
6661 alias c_g_seekable_can_truncate g_seekable_can_truncate;
6662 alias c_g_seekable_seek g_seekable_seek;
6663 alias c_g_seekable_tell g_seekable_tell;
6664 alias c_g_seekable_truncate g_seekable_truncate;
6665 
6666 // gio.Settings
6667 
6668 alias c_g_settings_get_type g_settings_get_type;
6669 alias c_g_settings_new g_settings_new;
6670 alias c_g_settings_new_full g_settings_new_full;
6671 alias c_g_settings_new_with_backend g_settings_new_with_backend;
6672 alias c_g_settings_new_with_backend_and_path g_settings_new_with_backend_and_path;
6673 alias c_g_settings_new_with_path g_settings_new_with_path;
6674 alias c_g_settings_list_relocatable_schemas g_settings_list_relocatable_schemas;
6675 alias c_g_settings_list_schemas g_settings_list_schemas;
6676 alias c_g_settings_sync g_settings_sync;
6677 alias c_g_settings_unbind g_settings_unbind;
6678 alias c_g_settings_apply g_settings_apply;
6679 alias c_g_settings_bind g_settings_bind;
6680 alias c_g_settings_bind_with_mapping g_settings_bind_with_mapping;
6681 alias c_g_settings_bind_writable g_settings_bind_writable;
6682 alias c_g_settings_create_action g_settings_create_action;
6683 alias c_g_settings_delay g_settings_delay;
6684 alias c_g_settings_get g_settings_get;
6685 alias c_g_settings_get_boolean g_settings_get_boolean;
6686 alias c_g_settings_get_child g_settings_get_child;
6687 alias c_g_settings_get_default_value g_settings_get_default_value;
6688 alias c_g_settings_get_double g_settings_get_double;
6689 alias c_g_settings_get_enum g_settings_get_enum;
6690 alias c_g_settings_get_flags g_settings_get_flags;
6691 alias c_g_settings_get_has_unapplied g_settings_get_has_unapplied;
6692 alias c_g_settings_get_int g_settings_get_int;
6693 alias c_g_settings_get_int64 g_settings_get_int64;
6694 alias c_g_settings_get_mapped g_settings_get_mapped;
6695 alias c_g_settings_get_range g_settings_get_range;
6696 alias c_g_settings_get_string g_settings_get_string;
6697 alias c_g_settings_get_strv g_settings_get_strv;
6698 alias c_g_settings_get_uint g_settings_get_uint;
6699 alias c_g_settings_get_uint64 g_settings_get_uint64;
6700 alias c_g_settings_get_user_value g_settings_get_user_value;
6701 alias c_g_settings_get_value g_settings_get_value;
6702 alias c_g_settings_is_writable g_settings_is_writable;
6703 alias c_g_settings_list_children g_settings_list_children;
6704 alias c_g_settings_list_keys g_settings_list_keys;
6705 alias c_g_settings_range_check g_settings_range_check;
6706 alias c_g_settings_reset g_settings_reset;
6707 alias c_g_settings_revert g_settings_revert;
6708 alias c_g_settings_set g_settings_set;
6709 alias c_g_settings_set_boolean g_settings_set_boolean;
6710 alias c_g_settings_set_double g_settings_set_double;
6711 alias c_g_settings_set_enum g_settings_set_enum;
6712 alias c_g_settings_set_flags g_settings_set_flags;
6713 alias c_g_settings_set_int g_settings_set_int;
6714 alias c_g_settings_set_int64 g_settings_set_int64;
6715 alias c_g_settings_set_string g_settings_set_string;
6716 alias c_g_settings_set_strv g_settings_set_strv;
6717 alias c_g_settings_set_uint g_settings_set_uint;
6718 alias c_g_settings_set_uint64 g_settings_set_uint64;
6719 alias c_g_settings_set_value g_settings_set_value;
6720 
6721 // gio.SettingsBackend
6722 
6723 alias c_g_settings_backend_get_type g_settings_backend_get_type;
6724 alias c_g_settings_backend_flatten_tree g_settings_backend_flatten_tree;
6725 alias c_g_settings_backend_get_default g_settings_backend_get_default;
6726 alias c_g_settings_backend_changed g_settings_backend_changed;
6727 alias c_g_settings_backend_changed_tree g_settings_backend_changed_tree;
6728 alias c_g_settings_backend_keys_changed g_settings_backend_keys_changed;
6729 alias c_g_settings_backend_path_changed g_settings_backend_path_changed;
6730 alias c_g_settings_backend_path_writable_changed g_settings_backend_path_writable_changed;
6731 alias c_g_settings_backend_writable_changed g_settings_backend_writable_changed;
6732 alias c_g_keyfile_settings_backend_new g_keyfile_settings_backend_new;
6733 alias c_g_memory_settings_backend_new g_memory_settings_backend_new;
6734 alias c_g_null_settings_backend_new g_null_settings_backend_new;
6735 
6736 // gio.SettingsSchema
6737 
6738 alias c_g_settings_schema_get_type g_settings_schema_get_type;
6739 alias c_g_settings_schema_get_id g_settings_schema_get_id;
6740 alias c_g_settings_schema_get_key g_settings_schema_get_key;
6741 alias c_g_settings_schema_get_path g_settings_schema_get_path;
6742 alias c_g_settings_schema_has_key g_settings_schema_has_key;
6743 alias c_g_settings_schema_list_children g_settings_schema_list_children;
6744 alias c_g_settings_schema_list_keys g_settings_schema_list_keys;
6745 alias c_g_settings_schema_ref g_settings_schema_ref;
6746 alias c_g_settings_schema_unref g_settings_schema_unref;
6747 
6748 // gio.SettingsSchemaKey
6749 
6750 alias c_g_settings_schema_key_get_type g_settings_schema_key_get_type;
6751 alias c_g_settings_schema_key_get_default_value g_settings_schema_key_get_default_value;
6752 alias c_g_settings_schema_key_get_description g_settings_schema_key_get_description;
6753 alias c_g_settings_schema_key_get_name g_settings_schema_key_get_name;
6754 alias c_g_settings_schema_key_get_range g_settings_schema_key_get_range;
6755 alias c_g_settings_schema_key_get_summary g_settings_schema_key_get_summary;
6756 alias c_g_settings_schema_key_get_value_type g_settings_schema_key_get_value_type;
6757 alias c_g_settings_schema_key_range_check g_settings_schema_key_range_check;
6758 alias c_g_settings_schema_key_ref g_settings_schema_key_ref;
6759 alias c_g_settings_schema_key_unref g_settings_schema_key_unref;
6760 
6761 // gio.SettingsSchemaSource
6762 
6763 alias c_g_settings_schema_source_get_type g_settings_schema_source_get_type;
6764 alias c_g_settings_schema_source_new_from_directory g_settings_schema_source_new_from_directory;
6765 alias c_g_settings_schema_source_list_schemas g_settings_schema_source_list_schemas;
6766 alias c_g_settings_schema_source_lookup g_settings_schema_source_lookup;
6767 alias c_g_settings_schema_source_ref g_settings_schema_source_ref;
6768 alias c_g_settings_schema_source_unref g_settings_schema_source_unref;
6769 alias c_g_settings_schema_source_get_default g_settings_schema_source_get_default;
6770 
6771 // gio.SimpleAction
6772 
6773 alias c_g_simple_action_get_type g_simple_action_get_type;
6774 alias c_g_simple_action_new g_simple_action_new;
6775 alias c_g_simple_action_new_stateful g_simple_action_new_stateful;
6776 alias c_g_simple_action_set_enabled g_simple_action_set_enabled;
6777 alias c_g_simple_action_set_state g_simple_action_set_state;
6778 alias c_g_simple_action_set_state_hint g_simple_action_set_state_hint;
6779 
6780 // gio.SimpleActionGroup
6781 
6782 alias c_g_simple_action_group_get_type g_simple_action_group_get_type;
6783 alias c_g_simple_action_group_new g_simple_action_group_new;
6784 alias c_g_simple_action_group_add_entries g_simple_action_group_add_entries;
6785 alias c_g_simple_action_group_insert g_simple_action_group_insert;
6786 alias c_g_simple_action_group_lookup g_simple_action_group_lookup;
6787 alias c_g_simple_action_group_remove g_simple_action_group_remove;
6788 
6789 // gio.SimpleAsyncResult
6790 
6791 alias c_g_simple_async_result_get_type g_simple_async_result_get_type;
6792 alias c_g_simple_async_result_new g_simple_async_result_new;
6793 alias c_g_simple_async_result_new_error g_simple_async_result_new_error;
6794 alias c_g_simple_async_result_new_from_error g_simple_async_result_new_from_error;
6795 alias c_g_simple_async_result_new_take_error g_simple_async_result_new_take_error;
6796 alias c_g_simple_async_result_is_valid g_simple_async_result_is_valid;
6797 alias c_g_simple_async_result_complete g_simple_async_result_complete;
6798 alias c_g_simple_async_result_complete_in_idle g_simple_async_result_complete_in_idle;
6799 alias c_g_simple_async_result_get_op_res_gboolean g_simple_async_result_get_op_res_gboolean;
6800 alias c_g_simple_async_result_get_op_res_gpointer g_simple_async_result_get_op_res_gpointer;
6801 alias c_g_simple_async_result_get_op_res_gssize g_simple_async_result_get_op_res_gssize;
6802 alias c_g_simple_async_result_get_source_tag g_simple_async_result_get_source_tag;
6803 alias c_g_simple_async_result_propagate_error g_simple_async_result_propagate_error;
6804 alias c_g_simple_async_result_run_in_thread g_simple_async_result_run_in_thread;
6805 alias c_g_simple_async_result_set_check_cancellable g_simple_async_result_set_check_cancellable;
6806 alias c_g_simple_async_result_set_error g_simple_async_result_set_error;
6807 alias c_g_simple_async_result_set_error_va g_simple_async_result_set_error_va;
6808 alias c_g_simple_async_result_set_from_error g_simple_async_result_set_from_error;
6809 alias c_g_simple_async_result_set_handle_cancellation g_simple_async_result_set_handle_cancellation;
6810 alias c_g_simple_async_result_set_op_res_gboolean g_simple_async_result_set_op_res_gboolean;
6811 alias c_g_simple_async_result_set_op_res_gpointer g_simple_async_result_set_op_res_gpointer;
6812 alias c_g_simple_async_result_set_op_res_gssize g_simple_async_result_set_op_res_gssize;
6813 alias c_g_simple_async_result_take_error g_simple_async_result_take_error;
6814 alias c_g_simple_async_report_error_in_idle g_simple_async_report_error_in_idle;
6815 alias c_g_simple_async_report_gerror_in_idle g_simple_async_report_gerror_in_idle;
6816 alias c_g_simple_async_report_take_gerror_in_idle g_simple_async_report_take_gerror_in_idle;
6817 
6818 // gio.SimpleIOStream
6819 
6820 alias c_g_simple_io_stream_get_type g_simple_io_stream_get_type;
6821 alias c_g_simple_io_stream_new g_simple_io_stream_new;
6822 
6823 // gio.SimplePermission
6824 
6825 alias c_g_simple_permission_get_type g_simple_permission_get_type;
6826 alias c_g_simple_permission_new g_simple_permission_new;
6827 
6828 // gio.SimpleProxyResolver
6829 
6830 alias c_g_simple_proxy_resolver_get_type g_simple_proxy_resolver_get_type;
6831 alias c_g_simple_proxy_resolver_new g_simple_proxy_resolver_new;
6832 alias c_g_simple_proxy_resolver_set_default_proxy g_simple_proxy_resolver_set_default_proxy;
6833 alias c_g_simple_proxy_resolver_set_ignore_hosts g_simple_proxy_resolver_set_ignore_hosts;
6834 alias c_g_simple_proxy_resolver_set_uri_proxy g_simple_proxy_resolver_set_uri_proxy;
6835 
6836 // gio.Socket
6837 
6838 alias c_g_socket_get_type g_socket_get_type;
6839 alias c_g_socket_new g_socket_new;
6840 alias c_g_socket_new_from_fd g_socket_new_from_fd;
6841 alias c_g_socket_accept g_socket_accept;
6842 alias c_g_socket_bind g_socket_bind;
6843 alias c_g_socket_check_connect_result g_socket_check_connect_result;
6844 alias c_g_socket_close g_socket_close;
6845 alias c_g_socket_condition_check g_socket_condition_check;
6846 alias c_g_socket_condition_timed_wait g_socket_condition_timed_wait;
6847 alias c_g_socket_condition_wait g_socket_condition_wait;
6848 alias c_g_socket_connect g_socket_connect;
6849 alias c_g_socket_connection_factory_create_connection g_socket_connection_factory_create_connection;
6850 alias c_g_socket_create_source g_socket_create_source;
6851 alias c_g_socket_get_available_bytes g_socket_get_available_bytes;
6852 alias c_g_socket_get_blocking g_socket_get_blocking;
6853 alias c_g_socket_get_broadcast g_socket_get_broadcast;
6854 alias c_g_socket_get_credentials g_socket_get_credentials;
6855 alias c_g_socket_get_family g_socket_get_family;
6856 alias c_g_socket_get_fd g_socket_get_fd;
6857 alias c_g_socket_get_keepalive g_socket_get_keepalive;
6858 alias c_g_socket_get_listen_backlog g_socket_get_listen_backlog;
6859 alias c_g_socket_get_local_address g_socket_get_local_address;
6860 alias c_g_socket_get_multicast_loopback g_socket_get_multicast_loopback;
6861 alias c_g_socket_get_multicast_ttl g_socket_get_multicast_ttl;
6862 alias c_g_socket_get_option g_socket_get_option;
6863 alias c_g_socket_get_protocol g_socket_get_protocol;
6864 alias c_g_socket_get_remote_address g_socket_get_remote_address;
6865 alias c_g_socket_get_socket_type g_socket_get_socket_type;
6866 alias c_g_socket_get_timeout g_socket_get_timeout;
6867 alias c_g_socket_get_ttl g_socket_get_ttl;
6868 alias c_g_socket_is_closed g_socket_is_closed;
6869 alias c_g_socket_is_connected g_socket_is_connected;
6870 alias c_g_socket_join_multicast_group g_socket_join_multicast_group;
6871 alias c_g_socket_join_multicast_group_ssm g_socket_join_multicast_group_ssm;
6872 alias c_g_socket_leave_multicast_group g_socket_leave_multicast_group;
6873 alias c_g_socket_leave_multicast_group_ssm g_socket_leave_multicast_group_ssm;
6874 alias c_g_socket_listen g_socket_listen;
6875 alias c_g_socket_receive g_socket_receive;
6876 alias c_g_socket_receive_from g_socket_receive_from;
6877 alias c_g_socket_receive_message g_socket_receive_message;
6878 alias c_g_socket_receive_messages g_socket_receive_messages;
6879 alias c_g_socket_receive_with_blocking g_socket_receive_with_blocking;
6880 alias c_g_socket_send g_socket_send;
6881 alias c_g_socket_send_message g_socket_send_message;
6882 alias c_g_socket_send_message_with_timeout g_socket_send_message_with_timeout;
6883 alias c_g_socket_send_messages g_socket_send_messages;
6884 alias c_g_socket_send_to g_socket_send_to;
6885 alias c_g_socket_send_with_blocking g_socket_send_with_blocking;
6886 alias c_g_socket_set_blocking g_socket_set_blocking;
6887 alias c_g_socket_set_broadcast g_socket_set_broadcast;
6888 alias c_g_socket_set_keepalive g_socket_set_keepalive;
6889 alias c_g_socket_set_listen_backlog g_socket_set_listen_backlog;
6890 alias c_g_socket_set_multicast_loopback g_socket_set_multicast_loopback;
6891 alias c_g_socket_set_multicast_ttl g_socket_set_multicast_ttl;
6892 alias c_g_socket_set_option g_socket_set_option;
6893 alias c_g_socket_set_timeout g_socket_set_timeout;
6894 alias c_g_socket_set_ttl g_socket_set_ttl;
6895 alias c_g_socket_shutdown g_socket_shutdown;
6896 alias c_g_socket_speaks_ipv4 g_socket_speaks_ipv4;
6897 
6898 // gio.SocketAddress
6899 
6900 alias c_g_socket_address_get_type g_socket_address_get_type;
6901 alias c_g_socket_address_new_from_native g_socket_address_new_from_native;
6902 alias c_g_socket_address_get_family g_socket_address_get_family;
6903 alias c_g_socket_address_get_native_size g_socket_address_get_native_size;
6904 alias c_g_socket_address_to_native g_socket_address_to_native;
6905 
6906 // gio.SocketAddressEnumerator
6907 
6908 alias c_g_socket_address_enumerator_get_type g_socket_address_enumerator_get_type;
6909 alias c_g_socket_address_enumerator_next g_socket_address_enumerator_next;
6910 alias c_g_socket_address_enumerator_next_async g_socket_address_enumerator_next_async;
6911 alias c_g_socket_address_enumerator_next_finish g_socket_address_enumerator_next_finish;
6912 
6913 // gio.SocketClient
6914 
6915 alias c_g_socket_client_get_type g_socket_client_get_type;
6916 alias c_g_socket_client_new g_socket_client_new;
6917 alias c_g_socket_client_add_application_proxy g_socket_client_add_application_proxy;
6918 alias c_g_socket_client_connect g_socket_client_connect;
6919 alias c_g_socket_client_connect_async g_socket_client_connect_async;
6920 alias c_g_socket_client_connect_finish g_socket_client_connect_finish;
6921 alias c_g_socket_client_connect_to_host g_socket_client_connect_to_host;
6922 alias c_g_socket_client_connect_to_host_async g_socket_client_connect_to_host_async;
6923 alias c_g_socket_client_connect_to_host_finish g_socket_client_connect_to_host_finish;
6924 alias c_g_socket_client_connect_to_service g_socket_client_connect_to_service;
6925 alias c_g_socket_client_connect_to_service_async g_socket_client_connect_to_service_async;
6926 alias c_g_socket_client_connect_to_service_finish g_socket_client_connect_to_service_finish;
6927 alias c_g_socket_client_connect_to_uri g_socket_client_connect_to_uri;
6928 alias c_g_socket_client_connect_to_uri_async g_socket_client_connect_to_uri_async;
6929 alias c_g_socket_client_connect_to_uri_finish g_socket_client_connect_to_uri_finish;
6930 alias c_g_socket_client_get_enable_proxy g_socket_client_get_enable_proxy;
6931 alias c_g_socket_client_get_family g_socket_client_get_family;
6932 alias c_g_socket_client_get_local_address g_socket_client_get_local_address;
6933 alias c_g_socket_client_get_protocol g_socket_client_get_protocol;
6934 alias c_g_socket_client_get_proxy_resolver g_socket_client_get_proxy_resolver;
6935 alias c_g_socket_client_get_socket_type g_socket_client_get_socket_type;
6936 alias c_g_socket_client_get_timeout g_socket_client_get_timeout;
6937 alias c_g_socket_client_get_tls g_socket_client_get_tls;
6938 alias c_g_socket_client_get_tls_validation_flags g_socket_client_get_tls_validation_flags;
6939 alias c_g_socket_client_set_enable_proxy g_socket_client_set_enable_proxy;
6940 alias c_g_socket_client_set_family g_socket_client_set_family;
6941 alias c_g_socket_client_set_local_address g_socket_client_set_local_address;
6942 alias c_g_socket_client_set_protocol g_socket_client_set_protocol;
6943 alias c_g_socket_client_set_proxy_resolver g_socket_client_set_proxy_resolver;
6944 alias c_g_socket_client_set_socket_type g_socket_client_set_socket_type;
6945 alias c_g_socket_client_set_timeout g_socket_client_set_timeout;
6946 alias c_g_socket_client_set_tls g_socket_client_set_tls;
6947 alias c_g_socket_client_set_tls_validation_flags g_socket_client_set_tls_validation_flags;
6948 
6949 // gio.SocketConnectable
6950 
6951 alias c_g_socket_connectable_get_type g_socket_connectable_get_type;
6952 alias c_g_socket_connectable_enumerate g_socket_connectable_enumerate;
6953 alias c_g_socket_connectable_proxy_enumerate g_socket_connectable_proxy_enumerate;
6954 alias c_g_socket_connectable_to_string g_socket_connectable_to_string;
6955 
6956 // gio.SocketConnection
6957 
6958 alias c_g_socket_connection_get_type g_socket_connection_get_type;
6959 alias c_g_socket_connection_factory_lookup_type g_socket_connection_factory_lookup_type;
6960 alias c_g_socket_connection_factory_register_type g_socket_connection_factory_register_type;
6961 alias c_g_socket_connection_connect g_socket_connection_connect;
6962 alias c_g_socket_connection_connect_async g_socket_connection_connect_async;
6963 alias c_g_socket_connection_connect_finish g_socket_connection_connect_finish;
6964 alias c_g_socket_connection_get_local_address g_socket_connection_get_local_address;
6965 alias c_g_socket_connection_get_remote_address g_socket_connection_get_remote_address;
6966 alias c_g_socket_connection_get_socket g_socket_connection_get_socket;
6967 alias c_g_socket_connection_is_connected g_socket_connection_is_connected;
6968 
6969 // gio.SocketControlMessage
6970 
6971 alias c_g_socket_control_message_get_type g_socket_control_message_get_type;
6972 alias c_g_socket_control_message_deserialize g_socket_control_message_deserialize;
6973 alias c_g_socket_control_message_get_level g_socket_control_message_get_level;
6974 alias c_g_socket_control_message_get_msg_type g_socket_control_message_get_msg_type;
6975 alias c_g_socket_control_message_get_size g_socket_control_message_get_size;
6976 alias c_g_socket_control_message_serialize g_socket_control_message_serialize;
6977 
6978 // gio.SocketListener
6979 
6980 alias c_g_socket_listener_get_type g_socket_listener_get_type;
6981 alias c_g_socket_listener_new g_socket_listener_new;
6982 alias c_g_socket_listener_accept g_socket_listener_accept;
6983 alias c_g_socket_listener_accept_async g_socket_listener_accept_async;
6984 alias c_g_socket_listener_accept_finish g_socket_listener_accept_finish;
6985 alias c_g_socket_listener_accept_socket g_socket_listener_accept_socket;
6986 alias c_g_socket_listener_accept_socket_async g_socket_listener_accept_socket_async;
6987 alias c_g_socket_listener_accept_socket_finish g_socket_listener_accept_socket_finish;
6988 alias c_g_socket_listener_add_address g_socket_listener_add_address;
6989 alias c_g_socket_listener_add_any_inet_port g_socket_listener_add_any_inet_port;
6990 alias c_g_socket_listener_add_inet_port g_socket_listener_add_inet_port;
6991 alias c_g_socket_listener_add_socket g_socket_listener_add_socket;
6992 alias c_g_socket_listener_close g_socket_listener_close;
6993 alias c_g_socket_listener_set_backlog g_socket_listener_set_backlog;
6994 
6995 // gio.SocketService
6996 
6997 alias c_g_socket_service_get_type g_socket_service_get_type;
6998 alias c_g_socket_service_new g_socket_service_new;
6999 alias c_g_socket_service_is_active g_socket_service_is_active;
7000 alias c_g_socket_service_start g_socket_service_start;
7001 alias c_g_socket_service_stop g_socket_service_stop;
7002 
7003 // gio.SrvTarget
7004 
7005 alias c_g_srv_target_get_type g_srv_target_get_type;
7006 alias c_g_srv_target_new g_srv_target_new;
7007 alias c_g_srv_target_copy g_srv_target_copy;
7008 alias c_g_srv_target_free g_srv_target_free;
7009 alias c_g_srv_target_get_hostname g_srv_target_get_hostname;
7010 alias c_g_srv_target_get_port g_srv_target_get_port;
7011 alias c_g_srv_target_get_priority g_srv_target_get_priority;
7012 alias c_g_srv_target_get_weight g_srv_target_get_weight;
7013 alias c_g_srv_target_list_sort g_srv_target_list_sort;
7014 
7015 // gio.StaticResource
7016 
7017 alias c_g_static_resource_fini g_static_resource_fini;
7018 alias c_g_static_resource_get_resource g_static_resource_get_resource;
7019 alias c_g_static_resource_init g_static_resource_init;
7020 
7021 // gio.Subprocess
7022 
7023 alias c_g_subprocess_get_type g_subprocess_get_type;
7024 alias c_g_subprocess_new g_subprocess_new;
7025 alias c_g_subprocess_newv g_subprocess_newv;
7026 alias c_g_subprocess_communicate g_subprocess_communicate;
7027 alias c_g_subprocess_communicate_async g_subprocess_communicate_async;
7028 alias c_g_subprocess_communicate_finish g_subprocess_communicate_finish;
7029 alias c_g_subprocess_communicate_utf8 g_subprocess_communicate_utf8;
7030 alias c_g_subprocess_communicate_utf8_async g_subprocess_communicate_utf8_async;
7031 alias c_g_subprocess_communicate_utf8_finish g_subprocess_communicate_utf8_finish;
7032 alias c_g_subprocess_force_exit g_subprocess_force_exit;
7033 alias c_g_subprocess_get_exit_status g_subprocess_get_exit_status;
7034 alias c_g_subprocess_get_identifier g_subprocess_get_identifier;
7035 alias c_g_subprocess_get_if_exited g_subprocess_get_if_exited;
7036 alias c_g_subprocess_get_if_signaled g_subprocess_get_if_signaled;
7037 alias c_g_subprocess_get_status g_subprocess_get_status;
7038 alias c_g_subprocess_get_stderr_pipe g_subprocess_get_stderr_pipe;
7039 alias c_g_subprocess_get_stdin_pipe g_subprocess_get_stdin_pipe;
7040 alias c_g_subprocess_get_stdout_pipe g_subprocess_get_stdout_pipe;
7041 alias c_g_subprocess_get_successful g_subprocess_get_successful;
7042 alias c_g_subprocess_get_term_sig g_subprocess_get_term_sig;
7043 alias c_g_subprocess_send_signal g_subprocess_send_signal;
7044 alias c_g_subprocess_wait g_subprocess_wait;
7045 alias c_g_subprocess_wait_async g_subprocess_wait_async;
7046 alias c_g_subprocess_wait_check g_subprocess_wait_check;
7047 alias c_g_subprocess_wait_check_async g_subprocess_wait_check_async;
7048 alias c_g_subprocess_wait_check_finish g_subprocess_wait_check_finish;
7049 alias c_g_subprocess_wait_finish g_subprocess_wait_finish;
7050 
7051 // gio.SubprocessLauncher
7052 
7053 alias c_g_subprocess_launcher_get_type g_subprocess_launcher_get_type;
7054 alias c_g_subprocess_launcher_new g_subprocess_launcher_new;
7055 alias c_g_subprocess_launcher_close g_subprocess_launcher_close;
7056 alias c_g_subprocess_launcher_getenv g_subprocess_launcher_getenv;
7057 alias c_g_subprocess_launcher_set_child_setup g_subprocess_launcher_set_child_setup;
7058 alias c_g_subprocess_launcher_set_cwd g_subprocess_launcher_set_cwd;
7059 alias c_g_subprocess_launcher_set_environ g_subprocess_launcher_set_environ;
7060 alias c_g_subprocess_launcher_set_flags g_subprocess_launcher_set_flags;
7061 alias c_g_subprocess_launcher_set_stderr_file_path g_subprocess_launcher_set_stderr_file_path;
7062 alias c_g_subprocess_launcher_set_stdin_file_path g_subprocess_launcher_set_stdin_file_path;
7063 alias c_g_subprocess_launcher_set_stdout_file_path g_subprocess_launcher_set_stdout_file_path;
7064 alias c_g_subprocess_launcher_setenv g_subprocess_launcher_setenv;
7065 alias c_g_subprocess_launcher_spawn g_subprocess_launcher_spawn;
7066 alias c_g_subprocess_launcher_spawnv g_subprocess_launcher_spawnv;
7067 alias c_g_subprocess_launcher_take_fd g_subprocess_launcher_take_fd;
7068 alias c_g_subprocess_launcher_take_stderr_fd g_subprocess_launcher_take_stderr_fd;
7069 alias c_g_subprocess_launcher_take_stdin_fd g_subprocess_launcher_take_stdin_fd;
7070 alias c_g_subprocess_launcher_take_stdout_fd g_subprocess_launcher_take_stdout_fd;
7071 alias c_g_subprocess_launcher_unsetenv g_subprocess_launcher_unsetenv;
7072 
7073 // gio.Task
7074 
7075 alias c_g_task_get_type g_task_get_type;
7076 alias c_g_task_new g_task_new;
7077 alias c_g_task_is_valid g_task_is_valid;
7078 alias c_g_task_report_error g_task_report_error;
7079 alias c_g_task_report_new_error g_task_report_new_error;
7080 alias c_g_task_attach_source g_task_attach_source;
7081 alias c_g_task_get_cancellable g_task_get_cancellable;
7082 alias c_g_task_get_check_cancellable g_task_get_check_cancellable;
7083 alias c_g_task_get_completed g_task_get_completed;
7084 alias c_g_task_get_context g_task_get_context;
7085 alias c_g_task_get_name g_task_get_name;
7086 alias c_g_task_get_priority g_task_get_priority;
7087 alias c_g_task_get_return_on_cancel g_task_get_return_on_cancel;
7088 alias c_g_task_get_source_object g_task_get_source_object;
7089 alias c_g_task_get_source_tag g_task_get_source_tag;
7090 alias c_g_task_get_task_data g_task_get_task_data;
7091 alias c_g_task_had_error g_task_had_error;
7092 alias c_g_task_propagate_boolean g_task_propagate_boolean;
7093 alias c_g_task_propagate_int g_task_propagate_int;
7094 alias c_g_task_propagate_pointer g_task_propagate_pointer;
7095 alias c_g_task_propagate_value g_task_propagate_value;
7096 alias c_g_task_return_boolean g_task_return_boolean;
7097 alias c_g_task_return_error g_task_return_error;
7098 alias c_g_task_return_error_if_cancelled g_task_return_error_if_cancelled;
7099 alias c_g_task_return_int g_task_return_int;
7100 alias c_g_task_return_new_error g_task_return_new_error;
7101 alias c_g_task_return_pointer g_task_return_pointer;
7102 alias c_g_task_return_value g_task_return_value;
7103 alias c_g_task_run_in_thread g_task_run_in_thread;
7104 alias c_g_task_run_in_thread_sync g_task_run_in_thread_sync;
7105 alias c_g_task_set_check_cancellable g_task_set_check_cancellable;
7106 alias c_g_task_set_name g_task_set_name;
7107 alias c_g_task_set_priority g_task_set_priority;
7108 alias c_g_task_set_return_on_cancel g_task_set_return_on_cancel;
7109 alias c_g_task_set_source_tag g_task_set_source_tag;
7110 alias c_g_task_set_task_data g_task_set_task_data;
7111 
7112 // gio.TcpConnection
7113 
7114 alias c_g_tcp_connection_get_type g_tcp_connection_get_type;
7115 alias c_g_tcp_connection_get_graceful_disconnect g_tcp_connection_get_graceful_disconnect;
7116 alias c_g_tcp_connection_set_graceful_disconnect g_tcp_connection_set_graceful_disconnect;
7117 
7118 // gio.TcpWrapperConnection
7119 
7120 alias c_g_tcp_wrapper_connection_get_type g_tcp_wrapper_connection_get_type;
7121 alias c_g_tcp_wrapper_connection_new g_tcp_wrapper_connection_new;
7122 alias c_g_tcp_wrapper_connection_get_base_io_stream g_tcp_wrapper_connection_get_base_io_stream;
7123 
7124 // gio.TestDBus
7125 
7126 alias c_g_test_dbus_get_type g_test_dbus_get_type;
7127 alias c_g_test_dbus_new g_test_dbus_new;
7128 alias c_g_test_dbus_unset g_test_dbus_unset;
7129 alias c_g_test_dbus_add_service_dir g_test_dbus_add_service_dir;
7130 alias c_g_test_dbus_down g_test_dbus_down;
7131 alias c_g_test_dbus_get_bus_address g_test_dbus_get_bus_address;
7132 alias c_g_test_dbus_get_flags g_test_dbus_get_flags;
7133 alias c_g_test_dbus_stop g_test_dbus_stop;
7134 alias c_g_test_dbus_up g_test_dbus_up;
7135 
7136 // gio.ThemedIcon
7137 
7138 alias c_g_themed_icon_get_type g_themed_icon_get_type;
7139 alias c_g_themed_icon_new g_themed_icon_new;
7140 alias c_g_themed_icon_new_from_names g_themed_icon_new_from_names;
7141 alias c_g_themed_icon_new_with_default_fallbacks g_themed_icon_new_with_default_fallbacks;
7142 alias c_g_themed_icon_append_name g_themed_icon_append_name;
7143 alias c_g_themed_icon_get_names g_themed_icon_get_names;
7144 alias c_g_themed_icon_prepend_name g_themed_icon_prepend_name;
7145 
7146 // gio.ThreadedSocketService
7147 
7148 alias c_g_threaded_socket_service_get_type g_threaded_socket_service_get_type;
7149 alias c_g_threaded_socket_service_new g_threaded_socket_service_new;
7150 
7151 // gio.TlsBackend
7152 
7153 alias c_g_tls_backend_get_type g_tls_backend_get_type;
7154 alias c_g_tls_backend_get_default g_tls_backend_get_default;
7155 alias c_g_tls_backend_get_certificate_type g_tls_backend_get_certificate_type;
7156 alias c_g_tls_backend_get_client_connection_type g_tls_backend_get_client_connection_type;
7157 alias c_g_tls_backend_get_default_database g_tls_backend_get_default_database;
7158 alias c_g_tls_backend_get_dtls_client_connection_type g_tls_backend_get_dtls_client_connection_type;
7159 alias c_g_tls_backend_get_dtls_server_connection_type g_tls_backend_get_dtls_server_connection_type;
7160 alias c_g_tls_backend_get_file_database_type g_tls_backend_get_file_database_type;
7161 alias c_g_tls_backend_get_server_connection_type g_tls_backend_get_server_connection_type;
7162 alias c_g_tls_backend_set_default_database g_tls_backend_set_default_database;
7163 alias c_g_tls_backend_supports_dtls g_tls_backend_supports_dtls;
7164 alias c_g_tls_backend_supports_tls g_tls_backend_supports_tls;
7165 
7166 // gio.TlsCertificate
7167 
7168 alias c_g_tls_certificate_get_type g_tls_certificate_get_type;
7169 alias c_g_tls_certificate_new_from_file g_tls_certificate_new_from_file;
7170 alias c_g_tls_certificate_new_from_file_with_password g_tls_certificate_new_from_file_with_password;
7171 alias c_g_tls_certificate_new_from_files g_tls_certificate_new_from_files;
7172 alias c_g_tls_certificate_new_from_pem g_tls_certificate_new_from_pem;
7173 alias c_g_tls_certificate_new_from_pkcs11_uris g_tls_certificate_new_from_pkcs11_uris;
7174 alias c_g_tls_certificate_new_from_pkcs12 g_tls_certificate_new_from_pkcs12;
7175 alias c_g_tls_certificate_list_new_from_file g_tls_certificate_list_new_from_file;
7176 alias c_g_tls_certificate_get_dns_names g_tls_certificate_get_dns_names;
7177 alias c_g_tls_certificate_get_ip_addresses g_tls_certificate_get_ip_addresses;
7178 alias c_g_tls_certificate_get_issuer g_tls_certificate_get_issuer;
7179 alias c_g_tls_certificate_get_issuer_name g_tls_certificate_get_issuer_name;
7180 alias c_g_tls_certificate_get_not_valid_after g_tls_certificate_get_not_valid_after;
7181 alias c_g_tls_certificate_get_not_valid_before g_tls_certificate_get_not_valid_before;
7182 alias c_g_tls_certificate_get_subject_name g_tls_certificate_get_subject_name;
7183 alias c_g_tls_certificate_is_same g_tls_certificate_is_same;
7184 alias c_g_tls_certificate_verify g_tls_certificate_verify;
7185 
7186 // gio.TlsClientConnection
7187 
7188 alias c_g_tls_client_connection_get_type g_tls_client_connection_get_type;
7189 alias c_g_tls_client_connection_new g_tls_client_connection_new;
7190 alias c_g_tls_client_connection_copy_session_state g_tls_client_connection_copy_session_state;
7191 alias c_g_tls_client_connection_get_accepted_cas g_tls_client_connection_get_accepted_cas;
7192 alias c_g_tls_client_connection_get_server_identity g_tls_client_connection_get_server_identity;
7193 alias c_g_tls_client_connection_get_use_ssl3 g_tls_client_connection_get_use_ssl3;
7194 alias c_g_tls_client_connection_get_validation_flags g_tls_client_connection_get_validation_flags;
7195 alias c_g_tls_client_connection_set_server_identity g_tls_client_connection_set_server_identity;
7196 alias c_g_tls_client_connection_set_use_ssl3 g_tls_client_connection_set_use_ssl3;
7197 alias c_g_tls_client_connection_set_validation_flags g_tls_client_connection_set_validation_flags;
7198 
7199 // gio.TlsConnection
7200 
7201 alias c_g_tls_connection_get_type g_tls_connection_get_type;
7202 alias c_g_tls_connection_emit_accept_certificate g_tls_connection_emit_accept_certificate;
7203 alias c_g_tls_connection_get_certificate g_tls_connection_get_certificate;
7204 alias c_g_tls_connection_get_channel_binding_data g_tls_connection_get_channel_binding_data;
7205 alias c_g_tls_connection_get_ciphersuite_name g_tls_connection_get_ciphersuite_name;
7206 alias c_g_tls_connection_get_database g_tls_connection_get_database;
7207 alias c_g_tls_connection_get_interaction g_tls_connection_get_interaction;
7208 alias c_g_tls_connection_get_negotiated_protocol g_tls_connection_get_negotiated_protocol;
7209 alias c_g_tls_connection_get_peer_certificate g_tls_connection_get_peer_certificate;
7210 alias c_g_tls_connection_get_peer_certificate_errors g_tls_connection_get_peer_certificate_errors;
7211 alias c_g_tls_connection_get_protocol_version g_tls_connection_get_protocol_version;
7212 alias c_g_tls_connection_get_rehandshake_mode g_tls_connection_get_rehandshake_mode;
7213 alias c_g_tls_connection_get_require_close_notify g_tls_connection_get_require_close_notify;
7214 alias c_g_tls_connection_get_use_system_certdb g_tls_connection_get_use_system_certdb;
7215 alias c_g_tls_connection_handshake g_tls_connection_handshake;
7216 alias c_g_tls_connection_handshake_async g_tls_connection_handshake_async;
7217 alias c_g_tls_connection_handshake_finish g_tls_connection_handshake_finish;
7218 alias c_g_tls_connection_set_advertised_protocols g_tls_connection_set_advertised_protocols;
7219 alias c_g_tls_connection_set_certificate g_tls_connection_set_certificate;
7220 alias c_g_tls_connection_set_database g_tls_connection_set_database;
7221 alias c_g_tls_connection_set_interaction g_tls_connection_set_interaction;
7222 alias c_g_tls_connection_set_rehandshake_mode g_tls_connection_set_rehandshake_mode;
7223 alias c_g_tls_connection_set_require_close_notify g_tls_connection_set_require_close_notify;
7224 alias c_g_tls_connection_set_use_system_certdb g_tls_connection_set_use_system_certdb;
7225 
7226 // gio.TlsDatabase
7227 
7228 alias c_g_tls_database_get_type g_tls_database_get_type;
7229 alias c_g_tls_database_create_certificate_handle g_tls_database_create_certificate_handle;
7230 alias c_g_tls_database_lookup_certificate_for_handle g_tls_database_lookup_certificate_for_handle;
7231 alias c_g_tls_database_lookup_certificate_for_handle_async g_tls_database_lookup_certificate_for_handle_async;
7232 alias c_g_tls_database_lookup_certificate_for_handle_finish g_tls_database_lookup_certificate_for_handle_finish;
7233 alias c_g_tls_database_lookup_certificate_issuer g_tls_database_lookup_certificate_issuer;
7234 alias c_g_tls_database_lookup_certificate_issuer_async g_tls_database_lookup_certificate_issuer_async;
7235 alias c_g_tls_database_lookup_certificate_issuer_finish g_tls_database_lookup_certificate_issuer_finish;
7236 alias c_g_tls_database_lookup_certificates_issued_by g_tls_database_lookup_certificates_issued_by;
7237 alias c_g_tls_database_lookup_certificates_issued_by_async g_tls_database_lookup_certificates_issued_by_async;
7238 alias c_g_tls_database_lookup_certificates_issued_by_finish g_tls_database_lookup_certificates_issued_by_finish;
7239 alias c_g_tls_database_verify_chain g_tls_database_verify_chain;
7240 alias c_g_tls_database_verify_chain_async g_tls_database_verify_chain_async;
7241 alias c_g_tls_database_verify_chain_finish g_tls_database_verify_chain_finish;
7242 
7243 // gio.TlsFileDatabase
7244 
7245 alias c_g_tls_file_database_get_type g_tls_file_database_get_type;
7246 alias c_g_tls_file_database_new g_tls_file_database_new;
7247 
7248 // gio.TlsInteraction
7249 
7250 alias c_g_tls_interaction_get_type g_tls_interaction_get_type;
7251 alias c_g_tls_interaction_ask_password g_tls_interaction_ask_password;
7252 alias c_g_tls_interaction_ask_password_async g_tls_interaction_ask_password_async;
7253 alias c_g_tls_interaction_ask_password_finish g_tls_interaction_ask_password_finish;
7254 alias c_g_tls_interaction_invoke_ask_password g_tls_interaction_invoke_ask_password;
7255 alias c_g_tls_interaction_invoke_request_certificate g_tls_interaction_invoke_request_certificate;
7256 alias c_g_tls_interaction_request_certificate g_tls_interaction_request_certificate;
7257 alias c_g_tls_interaction_request_certificate_async g_tls_interaction_request_certificate_async;
7258 alias c_g_tls_interaction_request_certificate_finish g_tls_interaction_request_certificate_finish;
7259 
7260 // gio.TlsPassword
7261 
7262 alias c_g_tls_password_get_type g_tls_password_get_type;
7263 alias c_g_tls_password_new g_tls_password_new;
7264 alias c_g_tls_password_get_description g_tls_password_get_description;
7265 alias c_g_tls_password_get_flags g_tls_password_get_flags;
7266 alias c_g_tls_password_get_value g_tls_password_get_value;
7267 alias c_g_tls_password_get_warning g_tls_password_get_warning;
7268 alias c_g_tls_password_set_description g_tls_password_set_description;
7269 alias c_g_tls_password_set_flags g_tls_password_set_flags;
7270 alias c_g_tls_password_set_value g_tls_password_set_value;
7271 alias c_g_tls_password_set_value_full g_tls_password_set_value_full;
7272 alias c_g_tls_password_set_warning g_tls_password_set_warning;
7273 
7274 // gio.TlsServerConnection
7275 
7276 alias c_g_tls_server_connection_get_type g_tls_server_connection_get_type;
7277 alias c_g_tls_server_connection_new g_tls_server_connection_new;
7278 
7279 // gio.UnixConnection
7280 
7281 alias c_g_unix_connection_get_type g_unix_connection_get_type;
7282 alias c_g_unix_connection_receive_credentials g_unix_connection_receive_credentials;
7283 alias c_g_unix_connection_receive_credentials_async g_unix_connection_receive_credentials_async;
7284 alias c_g_unix_connection_receive_credentials_finish g_unix_connection_receive_credentials_finish;
7285 alias c_g_unix_connection_receive_fd g_unix_connection_receive_fd;
7286 alias c_g_unix_connection_send_credentials g_unix_connection_send_credentials;
7287 alias c_g_unix_connection_send_credentials_async g_unix_connection_send_credentials_async;
7288 alias c_g_unix_connection_send_credentials_finish g_unix_connection_send_credentials_finish;
7289 alias c_g_unix_connection_send_fd g_unix_connection_send_fd;
7290 
7291 // gio.UnixCredentialsMessage
7292 
7293 alias c_g_unix_credentials_message_get_type g_unix_credentials_message_get_type;
7294 alias c_g_unix_credentials_message_new g_unix_credentials_message_new;
7295 alias c_g_unix_credentials_message_new_with_credentials g_unix_credentials_message_new_with_credentials;
7296 alias c_g_unix_credentials_message_is_supported g_unix_credentials_message_is_supported;
7297 alias c_g_unix_credentials_message_get_credentials g_unix_credentials_message_get_credentials;
7298 
7299 // gio.UnixFDList
7300 
7301 alias c_g_unix_fd_list_get_type g_unix_fd_list_get_type;
7302 alias c_g_unix_fd_list_new g_unix_fd_list_new;
7303 alias c_g_unix_fd_list_new_from_array g_unix_fd_list_new_from_array;
7304 alias c_g_unix_fd_list_append g_unix_fd_list_append;
7305 alias c_g_unix_fd_list_get g_unix_fd_list_get;
7306 alias c_g_unix_fd_list_get_length g_unix_fd_list_get_length;
7307 alias c_g_unix_fd_list_peek_fds g_unix_fd_list_peek_fds;
7308 alias c_g_unix_fd_list_steal_fds g_unix_fd_list_steal_fds;
7309 
7310 // gio.UnixFDMessage
7311 
7312 alias c_g_unix_fd_message_get_type g_unix_fd_message_get_type;
7313 alias c_g_unix_fd_message_new g_unix_fd_message_new;
7314 alias c_g_unix_fd_message_new_with_fd_list g_unix_fd_message_new_with_fd_list;
7315 alias c_g_unix_fd_message_append_fd g_unix_fd_message_append_fd;
7316 alias c_g_unix_fd_message_get_fd_list g_unix_fd_message_get_fd_list;
7317 alias c_g_unix_fd_message_steal_fds g_unix_fd_message_steal_fds;
7318 
7319 // gio.UnixInputStream
7320 
7321 alias c_g_unix_input_stream_get_type g_unix_input_stream_get_type;
7322 alias c_g_unix_input_stream_new g_unix_input_stream_new;
7323 alias c_g_unix_input_stream_get_close_fd g_unix_input_stream_get_close_fd;
7324 alias c_g_unix_input_stream_get_fd g_unix_input_stream_get_fd;
7325 alias c_g_unix_input_stream_set_close_fd g_unix_input_stream_set_close_fd;
7326 
7327 // gio.UnixMountEntry
7328 
7329 alias c_g_unix_mount_entry_get_type g_unix_mount_entry_get_type;
7330 alias c_g_unix_is_mount_path_system_internal g_unix_is_mount_path_system_internal;
7331 alias c_g_unix_mount_at g_unix_mount_at;
7332 alias c_g_unix_mount_compare g_unix_mount_compare;
7333 alias c_g_unix_mount_free g_unix_mount_free;
7334 alias c_g_unix_mount_get_device_path g_unix_mount_get_device_path;
7335 alias c_g_unix_mount_get_fs_type g_unix_mount_get_fs_type;
7336 alias c_g_unix_mount_get_mount_path g_unix_mount_get_mount_path;
7337 alias c_g_unix_mount_guess_can_eject g_unix_mount_guess_can_eject;
7338 alias c_g_unix_mount_guess_icon g_unix_mount_guess_icon;
7339 alias c_g_unix_mount_guess_name g_unix_mount_guess_name;
7340 alias c_g_unix_mount_guess_should_display g_unix_mount_guess_should_display;
7341 alias c_g_unix_mount_guess_symbolic_icon g_unix_mount_guess_symbolic_icon;
7342 alias c_g_unix_mount_is_readonly g_unix_mount_is_readonly;
7343 alias c_g_unix_mount_is_system_internal g_unix_mount_is_system_internal;
7344 alias c_g_unix_mount_points_changed_since g_unix_mount_points_changed_since;
7345 alias c_g_unix_mount_points_get g_unix_mount_points_get;
7346 alias c_g_unix_mounts_changed_since g_unix_mounts_changed_since;
7347 alias c_g_unix_mounts_get g_unix_mounts_get;
7348 alias c_g_unix_mount_copy g_unix_mount_copy;
7349 alias c_g_unix_mount_for g_unix_mount_for;
7350 alias c_g_unix_mount_get_options g_unix_mount_get_options;
7351 alias c_g_unix_mount_get_root_path g_unix_mount_get_root_path;
7352 
7353 // gio.UnixMountMonitor
7354 
7355 alias c_g_unix_mount_monitor_get_type g_unix_mount_monitor_get_type;
7356 alias c_g_unix_mount_monitor_new g_unix_mount_monitor_new;
7357 alias c_g_unix_mount_monitor_get g_unix_mount_monitor_get;
7358 alias c_g_unix_mount_monitor_set_rate_limit g_unix_mount_monitor_set_rate_limit;
7359 
7360 // gio.UnixMountPoint
7361 
7362 alias c_g_unix_mount_point_get_type g_unix_mount_point_get_type;
7363 alias c_g_unix_mount_point_compare g_unix_mount_point_compare;
7364 alias c_g_unix_mount_point_copy g_unix_mount_point_copy;
7365 alias c_g_unix_mount_point_free g_unix_mount_point_free;
7366 alias c_g_unix_mount_point_get_device_path g_unix_mount_point_get_device_path;
7367 alias c_g_unix_mount_point_get_fs_type g_unix_mount_point_get_fs_type;
7368 alias c_g_unix_mount_point_get_mount_path g_unix_mount_point_get_mount_path;
7369 alias c_g_unix_mount_point_get_options g_unix_mount_point_get_options;
7370 alias c_g_unix_mount_point_guess_can_eject g_unix_mount_point_guess_can_eject;
7371 alias c_g_unix_mount_point_guess_icon g_unix_mount_point_guess_icon;
7372 alias c_g_unix_mount_point_guess_name g_unix_mount_point_guess_name;
7373 alias c_g_unix_mount_point_guess_symbolic_icon g_unix_mount_point_guess_symbolic_icon;
7374 alias c_g_unix_mount_point_is_loopback g_unix_mount_point_is_loopback;
7375 alias c_g_unix_mount_point_is_readonly g_unix_mount_point_is_readonly;
7376 alias c_g_unix_mount_point_is_user_mountable g_unix_mount_point_is_user_mountable;
7377 alias c_g_unix_mount_point_at g_unix_mount_point_at;
7378 
7379 // gio.UnixOutputStream
7380 
7381 alias c_g_unix_output_stream_get_type g_unix_output_stream_get_type;
7382 alias c_g_unix_output_stream_new g_unix_output_stream_new;
7383 alias c_g_unix_output_stream_get_close_fd g_unix_output_stream_get_close_fd;
7384 alias c_g_unix_output_stream_get_fd g_unix_output_stream_get_fd;
7385 alias c_g_unix_output_stream_set_close_fd g_unix_output_stream_set_close_fd;
7386 
7387 // gio.UnixSocketAddress
7388 
7389 alias c_g_unix_socket_address_get_type g_unix_socket_address_get_type;
7390 alias c_g_unix_socket_address_new g_unix_socket_address_new;
7391 alias c_g_unix_socket_address_new_abstract g_unix_socket_address_new_abstract;
7392 alias c_g_unix_socket_address_new_with_type g_unix_socket_address_new_with_type;
7393 alias c_g_unix_socket_address_abstract_names_supported g_unix_socket_address_abstract_names_supported;
7394 alias c_g_unix_socket_address_get_address_type g_unix_socket_address_get_address_type;
7395 alias c_g_unix_socket_address_get_is_abstract g_unix_socket_address_get_is_abstract;
7396 alias c_g_unix_socket_address_get_path g_unix_socket_address_get_path;
7397 alias c_g_unix_socket_address_get_path_len g_unix_socket_address_get_path_len;
7398 
7399 // gio.Vfs
7400 
7401 alias c_g_vfs_get_type g_vfs_get_type;
7402 alias c_g_vfs_get_default g_vfs_get_default;
7403 alias c_g_vfs_get_local g_vfs_get_local;
7404 alias c_g_vfs_get_file_for_path g_vfs_get_file_for_path;
7405 alias c_g_vfs_get_file_for_uri g_vfs_get_file_for_uri;
7406 alias c_g_vfs_get_supported_uri_schemes g_vfs_get_supported_uri_schemes;
7407 alias c_g_vfs_is_active g_vfs_is_active;
7408 alias c_g_vfs_parse_name g_vfs_parse_name;
7409 alias c_g_vfs_register_uri_scheme g_vfs_register_uri_scheme;
7410 alias c_g_vfs_unregister_uri_scheme g_vfs_unregister_uri_scheme;
7411 
7412 // gio.Volume
7413 
7414 alias c_g_volume_get_type g_volume_get_type;
7415 alias c_g_volume_can_eject g_volume_can_eject;
7416 alias c_g_volume_can_mount g_volume_can_mount;
7417 alias c_g_volume_eject g_volume_eject;
7418 alias c_g_volume_eject_finish g_volume_eject_finish;
7419 alias c_g_volume_eject_with_operation g_volume_eject_with_operation;
7420 alias c_g_volume_eject_with_operation_finish g_volume_eject_with_operation_finish;
7421 alias c_g_volume_enumerate_identifiers g_volume_enumerate_identifiers;
7422 alias c_g_volume_get_activation_root g_volume_get_activation_root;
7423 alias c_g_volume_get_drive g_volume_get_drive;
7424 alias c_g_volume_get_icon g_volume_get_icon;
7425 alias c_g_volume_get_identifier g_volume_get_identifier;
7426 alias c_g_volume_get_mount g_volume_get_mount;
7427 alias c_g_volume_get_name g_volume_get_name;
7428 alias c_g_volume_get_sort_key g_volume_get_sort_key;
7429 alias c_g_volume_get_symbolic_icon g_volume_get_symbolic_icon;
7430 alias c_g_volume_get_uuid g_volume_get_uuid;
7431 alias c_g_volume_mount g_volume_mount;
7432 alias c_g_volume_mount_finish g_volume_mount_finish;
7433 alias c_g_volume_should_automount g_volume_should_automount;
7434 
7435 // gio.VolumeMonitor
7436 
7437 alias c_g_volume_monitor_get_type g_volume_monitor_get_type;
7438 alias c_g_volume_monitor_adopt_orphan_mount g_volume_monitor_adopt_orphan_mount;
7439 alias c_g_volume_monitor_get g_volume_monitor_get;
7440 alias c_g_volume_monitor_get_connected_drives g_volume_monitor_get_connected_drives;
7441 alias c_g_volume_monitor_get_mount_for_uuid g_volume_monitor_get_mount_for_uuid;
7442 alias c_g_volume_monitor_get_mounts g_volume_monitor_get_mounts;
7443 alias c_g_volume_monitor_get_volume_for_uuid g_volume_monitor_get_volume_for_uuid;
7444 alias c_g_volume_monitor_get_volumes g_volume_monitor_get_volumes;
7445 
7446 // gio.ZlibCompressor
7447 
7448 alias c_g_zlib_compressor_get_type g_zlib_compressor_get_type;
7449 alias c_g_zlib_compressor_new g_zlib_compressor_new;
7450 alias c_g_zlib_compressor_get_file_info g_zlib_compressor_get_file_info;
7451 alias c_g_zlib_compressor_set_file_info g_zlib_compressor_set_file_info;
7452 
7453 // gio.ZlibDecompressor
7454 
7455 alias c_g_zlib_decompressor_get_type g_zlib_decompressor_get_type;
7456 alias c_g_zlib_decompressor_new g_zlib_decompressor_new;
7457 alias c_g_zlib_decompressor_get_file_info g_zlib_decompressor_get_file_info;
7458 
7459 // gio.PollableUtils
7460 
7461 alias c_g_pollable_source_new g_pollable_source_new;
7462 alias c_g_pollable_source_new_full g_pollable_source_new_full;
7463 alias c_g_pollable_stream_read g_pollable_stream_read;
7464 alias c_g_pollable_stream_write g_pollable_stream_write;
7465 alias c_g_pollable_stream_write_all g_pollable_stream_write_all;
7466 
7467 // gio.DBusNames
7468 
7469 alias c_g_bus_own_name g_bus_own_name;
7470 alias c_g_bus_own_name_on_connection g_bus_own_name_on_connection;
7471 alias c_g_bus_own_name_on_connection_with_closures g_bus_own_name_on_connection_with_closures;
7472 alias c_g_bus_own_name_with_closures g_bus_own_name_with_closures;
7473 alias c_g_bus_unown_name g_bus_unown_name;
7474 alias c_g_bus_unwatch_name g_bus_unwatch_name;
7475 alias c_g_bus_watch_name g_bus_watch_name;
7476 alias c_g_bus_watch_name_on_connection g_bus_watch_name_on_connection;
7477 alias c_g_bus_watch_name_on_connection_with_closures g_bus_watch_name_on_connection_with_closures;
7478 alias c_g_bus_watch_name_with_closures g_bus_watch_name_with_closures;
7479 
7480 // gio.ContentType
7481 
7482 alias c_g_content_type_can_be_executable g_content_type_can_be_executable;
7483 alias c_g_content_type_equals g_content_type_equals;
7484 alias c_g_content_type_from_mime_type g_content_type_from_mime_type;
7485 alias c_g_content_type_get_description g_content_type_get_description;
7486 alias c_g_content_type_get_generic_icon_name g_content_type_get_generic_icon_name;
7487 alias c_g_content_type_get_icon g_content_type_get_icon;
7488 alias c_g_content_type_get_mime_type g_content_type_get_mime_type;
7489 alias c_g_content_type_get_symbolic_icon g_content_type_get_symbolic_icon;
7490 alias c_g_content_type_guess g_content_type_guess;
7491 alias c_g_content_type_guess_for_tree g_content_type_guess_for_tree;
7492 alias c_g_content_type_is_a g_content_type_is_a;
7493 alias c_g_content_type_is_unknown g_content_type_is_unknown;
7494 alias c_g_content_types_get_registered g_content_types_get_registered;
7495 alias c_g_content_type_is_mime_type g_content_type_is_mime_type;
7496 alias c_g_content_type_get_mime_dirs g_content_type_get_mime_dirs;
7497 alias c_g_content_type_set_mime_dirs g_content_type_set_mime_dirs;
7498 
7499 // gio.DBusError
7500 
7501 alias c_g_dbus_error_encode_gerror g_dbus_error_encode_gerror;
7502 alias c_g_dbus_error_get_remote_error g_dbus_error_get_remote_error;
7503 alias c_g_dbus_error_is_remote_error g_dbus_error_is_remote_error;
7504 alias c_g_dbus_error_new_for_dbus_error g_dbus_error_new_for_dbus_error;
7505 alias c_g_dbus_error_quark g_dbus_error_quark;
7506 alias c_g_dbus_error_register_error g_dbus_error_register_error;
7507 alias c_g_dbus_error_register_error_domain g_dbus_error_register_error_domain;
7508 alias c_g_dbus_error_strip_remote_error g_dbus_error_strip_remote_error;
7509 alias c_g_dbus_error_unregister_error g_dbus_error_unregister_error;
7510 
7511 // gio.DBusUtilities
7512 
7513 alias c_g_dbus_address_escape_value g_dbus_address_escape_value;
7514 alias c_g_dbus_address_get_for_bus_sync g_dbus_address_get_for_bus_sync;
7515 alias c_g_dbus_address_get_stream g_dbus_address_get_stream;
7516 alias c_g_dbus_address_get_stream_finish g_dbus_address_get_stream_finish;
7517 alias c_g_dbus_address_get_stream_sync g_dbus_address_get_stream_sync;
7518 alias c_g_dbus_generate_guid g_dbus_generate_guid;
7519 alias c_g_dbus_gvalue_to_gvariant g_dbus_gvalue_to_gvariant;
7520 alias c_g_dbus_gvariant_to_gvalue g_dbus_gvariant_to_gvalue;
7521 alias c_g_dbus_is_address g_dbus_is_address;
7522 alias c_g_dbus_is_guid g_dbus_is_guid;
7523 alias c_g_dbus_is_interface_name g_dbus_is_interface_name;
7524 alias c_g_dbus_is_member_name g_dbus_is_member_name;
7525 alias c_g_dbus_is_name g_dbus_is_name;
7526 alias c_g_dbus_is_supported_address g_dbus_is_supported_address;
7527 alias c_g_dbus_is_unique_name g_dbus_is_unique_name;
7528 
7529 // gio.ErrorGIO
7530 
7531 alias c_g_io_error_from_errno g_io_error_from_errno;
7532 alias c_g_io_error_quark g_io_error_quark;